-
Notifications
You must be signed in to change notification settings - Fork 7
/
style.css
118 lines (109 loc) · 1.97 KB
/
style.css
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
110
111
112
113
114
115
116
117
118
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Roboto Condensed", sans-serif;
line-height: 1;
background-image: url(./img/AdobeStock_280279207.jpeg);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
a {
background: transparent;
}
.fa-facebook,
.fa-twitter,
.fa-telegram {
margin-top: 20px !important;
margin-right: 20px;
font-size: 25px !important;
}
.fa-facebook {
color: #3b5998;
}
.fa-facebook:hover {
transform: scale(1.2);
}
.fa-twitter {
color: #00acee;
}
.fa-twitter:hover {
transform: scale(1.2);
}
.fa-telegram {
color: #0088cc;
}
.fa-telegram:hover {
transform: scale(1.2);
}
.fa-envelope {
margin-top: 13px;
margin-right: 20px;
font-size: 25px;
color: #fff;
padding: 10px;
background: #d44638;
border-radius: 20px;
}
.email {
font-size: 18px;
display: none;
}
.fa-envelope:hover .email {
display: inline-block;
}
.left-text {
font-size: 60px;
font-weight: 700;
color: #fff;
text-transform: uppercase;
line-height: 140%;
}
.right-text {
text-align: end;
text-transform: uppercase;
font-size: 30px;
font-weight: 500;
color: #fff;
margin-left: 100px !important;
}
.creating {
text-transform: uppercase;
color: #d44638;
letter-spacing: 1px;
font-weight: 800;
}
.different {
text-transform: uppercase;
color: #00acee;
letter-spacing: 1px;
font-size: 65px;
font-weight: 800;
}
.change {
text-transform: uppercase;
color: #d44638;
font-weight: 600;
}
.form-text {
color: #fff !important;
}
.form-control {
background: none !important;
border-radius: 0px !important;
border-top: none !important;
border-right: none !important;
border-left: none !important;
border-bottom: 2px solid #fff !important;
}
.btn-color {
color: #fff;
background: #00acee;
border: none;
border-radius: 50px !important;
}