-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (91 loc) · 1.67 KB
/
style.css
File metadata and controls
109 lines (91 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
html {
font-family: 'Lato', sans-serif;
}
body {
background-color: #f6f9f9;
}
.jumbotron {
background-color: #f6f9f9;
}
.banner {
background-image: url("img\\laptop.jpg");
background-repeat: no-repeat;
background-position: center;
}
.btn-primary {
background-color: #15a4fa;
border-color: #15a4fa;
}
#strict {
border-bottom: 0.2rem solid #15a4fa;
}
.veil {
position: absolute;
background-color: rgba(128, 128, 128, 0.3);
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.feature {
background-color: white;
}
.hidden-buttons button {
margin: 0 5px;
}
.hidden-buttons {
display: none;
position: absolute;
background-color: rgba(21, 164, 250, 0.7);
top: 0;
left: 0;
width: 100%;
height: 100%;
align-items: center;
justify-content: center;
}
.card:hover .hidden-buttons {
display: flex;
}
.btn-outline-primary {
color: white;
border-color: white;
background-color: rgba(21, 164, 250, 0.5);
}
.contact-us {
background-image: url("img\\road.jpg");
background-repeat: no-repeat;
background-position: center;
}
.container-form {
max-width: 540px;
}
.btn.facebook {
color: white;
background-color: #3b5998;
}
.btn.twitter {
color: white;
background-color: #55acee;
}
.btn.google-plus {
color: white;
background-color: #dd4b39;
}
.btn.linked-in {
color: white;
background-color: #0976b4;
}
input, textarea {
background-color: transparent !important;
color: white !important;
padding: 1.5rem !important;
}
i.fab {
width: 20px;
height: 20px;
}
::placeholder {
color: white !important;
opacity: 0.7 !important;
}