-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
172 lines (152 loc) · 3.51 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hammersmith+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Yusei+Magic&display=swap");
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-family: 'Lato', sans-serif;
}
header {
min-height: 100vh;
display: -ms-grid;
display: grid;
place-items: center;
background: linear-gradient(30deg, rgba(255, 0, 179, 0.884), rgba(0, 247, 255, 0.897)), url(./img/bg.jpg);
background-position: center;
background-size: cover;
background-attachment: fixed;
-webkit-perspective: 800px;
perspective: 800px;
}
header #Card {
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
width: 30vw;
min-height: 50vh;
-webkit-box-shadow: 1px 2px 10px #1a1a1a;
box-shadow: 1px 2px 10px #1a1a1a;
padding: 20px;
border-radius: 10px;
background: linear-gradient(45deg, rgba(255, 0, 179, 0.26), rgba(0, 247, 255, 0.185));
-webkit-transition: 0.2s;
transition: 0.2s;
-webkit-backdrop-filter: blur(5px);
backdrop-filter: blur(5px);
color: white;
}
header #Card #MainImg {
width: 45%;
margin: auto;
}
header #Card #MainImg img {
width: 100%;
-webkit-transition: 0.3s;
transition: 0.3s;
}
header #Card #Desc {
text-align: center;
margin: 15px 0px;
}
header #Card #Desc h2 {
font-size: 2rem;
font-family: 'Comfortaa', cursive;
color: #4489f4;
text-shadow: 1px 1px 1px black;
-webkit-transition: 0.2s;
transition: 0.2s;
}
header #Card #Desc p {
font-size: 1.1rem;
font-family: 'Hammersmith One', sans-serif;
text-shadow: 1px 1px 10px white;
padding-top: 5px;
}
header #Card #Features {
width: 70%;
margin: 10px auto;
-webkit-transition: 0.2s;
transition: 0.2s;
}
header #Card #Features p {
padding: 0px 0px 5px 0px;
color: #00fd87;
font-family: 'Exo 2', sans-serif;
}
header #Card #Features ul li {
list-style: inside none;
padding: 2px;
font-family: 'Yusei Magic', sans-serif;
}
header #Card #Features ul li i {
color: #00fd87;
padding: 0px 5px;
}
header #Card #HireButton {
text-align: center;
}
header #Card #HireButton a button {
padding: 5px 20px;
font-size: 1.2rem;
outline: none;
background: none;
border: 2px solid #ffffff;
color: #ffffff;
-webkit-transition: 0.2s;
transition: 0.2s;
cursor: pointer;
-webkit-transition: 0.3s;
transition: 0.3s;
border-radius: 2px;
}
header #Card #HireButton a button:hover {
background: #fff;
color: black;
-webkit-box-shadow: 1px 2px 10px black;
box-shadow: 1px 2px 10px black;
}
footer {
text-align: center;
padding: 5px 0px;
background: #14a260;
color: white;
font-size: 1.1rem;
}
footer p {
text-align: center;
letter-spacing: 1px;
}
footer p a {
text-decoration: none;
color: white;
text-shadow: 1px 1px 1px white;
padding: 0px 5px;
}
@media screen and (max-width: 1099px) {
#Card {
width: 40vw !important;
}
#Card #Features {
width: 80% !important;
}
}
@media screen and (max-width: 768px) {
* {
cursor: default !important;
}
#Card {
width: 80vw !important;
}
}
@media screen and (max-width: 478px) {
#Card {
width: 92vw !important;
}
#Card #Features {
width: 100% !important;
}
}
/*# sourceMappingURL=style.css.map */