-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.css
214 lines (154 loc) · 3.06 KB
/
main.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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
@font-face {
font-family:Montserrat;
src: url(fonts/Montserrat-Regular.ttf);
}
@font-face {
font-family:Painter;
src: url(fonts/Painter_PERSONAL_USE_ONLY.ttf);
}
@font-face {
font-family:futura;
src: url(fonts/futur.ttf);
}
html, body{
height: 100vh;
margin: 0;
}
body{
background:#e2e2e2;
font-family: Montserrat;
color:yellow;
}
#bg{
-webkit-clip-path: polygon(0 0, 100% 0, 60% 100%, 0% 100%);
clip-path: polygon(0 0, 100% 0, 60% 100%, 0% 100%);
background: #005fff;
height: 100%;
width: 100%;
position: absolute;
margin: 0;
z-index: -1;
}
@media (min-width:880px){
#main{
display: grid;
grid-template-columns:20% auto auto;
grid-template-rows: 15% auto auto;
justify-content: stretch;
align-items: center;
grid-template-areas: "logo menu sign"
"main main main" "social social social";
}
#social-icons{
justify-content: flex-end;
align-items: flex-end;
}
#main nav ul li{
margin: 8%;
color:#ffa;
}
}
@media (max-width:880px){
body{
background: #005fff;
}
#main{
display: grid;
grid-template-columns:200px auto;
grid-template-rows: 15% auto auto;
justify-content: center;
align-items: center;
grid-template-areas: "logo sign"
"menu menu"
"main main"
"social social";
}
#social-icons{
background: #005fff;
margin-top: 50px;
justify-content: center;
align-items: center;
mix-blend-mode: difference
}
#main nav ul li{
margin: 13%;
color: #ffa;
}
}
#main #logo{
grid-area: logo;
font-size: 50pt;
padding: 20px;
font-family: Painter;
}
#main nav ul{
list-style-type: none;
grid-area: menu;
display: flex;
flex-direction: row;
align-items: center;
}
#main nav ul li:hover{
cursor :pointer;
}
#sign-nav{
grid-area:sign;
display: flex;
flex-direction:row;
justify-content:center;
align-items: center;
}
#sign-nav div{
margin: 3%;
}
#sign-nav div{
cursor :pointer;
}
#signup{
width: 100px;
text-align: center;
border-radius: 10px;
padding: 10px;
border:2px solid yellow;
}
#main-content {
grid-area: main;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
#main-content #big-title h1{
font-family:futura;
font-size: 4em;
}
#desc{
width: 490px;
font-size: 13pt;
line-height: 19.5pt;
}
#desc p{
margin: auto 14pt 9pt 14pt;
color: #ffa;
}
.btn{
font-size: 1.7em;
width: 200px;
border-radius: 10px;
padding: 15px;
background-color: #ff0;
color: #3c3b3b;
box-shadow: 1px 7px 28px;
margin-top: 35px;
cursor: pointer;
}
#social-icons{
grid-area:social;
display: flex;
flex-direction: row;
}
#social-icons img{
margin: 10px;
mix-blend-mode: difference;
filter: hue-rotate(210deg);
}