-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
300 lines (257 loc) · 6.08 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
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
body {
padding: 0px 0px;
margin: 0px 0px;
font-family: Roboto;
}
h1 {
margin-top: 2%;
font-weight: 100;
font-size: 4em;
color: #cb4e4e;
margin-bottom: 0px;
}
h2 {
color: rgba(46, 45, 45, 0.66);
font-weight: lighter;
grid-area: block6;
margin-bottom: 0px;
margin-top: 0px;
text-align: center;
}
p {
font-weight: lighter;
color: #383636;
font-size: 1.1em;
}
#container {
display: grid;
grid-template-columns: repeat(7,1fr);
grid-auto-rows: minmax(70px,auto);
grid-template-areas:
"nav nav nav nav nav nav nav"
"aside aside aside aside aside aside aside"
"section section section section section section section"
;
}
nav {
grid-area: nav;
background: #fff;
z-index: 5;
-webkit-box-shadow: 7px 2px 51px -3px rgba(204,208,224,1);
-moz-box-shadow: 7px 2px 51px -3px rgba(204,208,224,1);
box-shadow: 7px 2px 51px -3px rgba(204,208,224,1);
padding: 5px 20px;
}
.wrapperNav {
margin: auto auto;
max-width: 1200px;
display: flex;
justify-content: space-between;
align-items: center;
}
nav h1 {
font-size: 1.2em;
margin-top: 0px;
color: rgba(203, 78, 78, 0.8);
}
nav .right {
display: flex;
align-items: center;
}
ul {
list-style-type: none;
}
li {
float: left;
}
li a {
margin-right: 20px;
color: #797A7C;
font-weight: lighter;
text-decoration: none;
}
aside {
grid-area: aside;
background:#F5F6FA;
z-index: 4;
text-align: center;
}
section {
background-color:#F5F6FA;
z-index: 3;
grid-area: section;
padding: 1% 5%;
}
form {
grid-area: checkbox;
display: flex;
justify-content: space-between;
font-family: roboto;
font-weight: lighter;
color: rgba(0, 0, 0, 0.6);
margin-bottom: 0px;
margin-top: 0px;
}
/* -------------------- CHECKBOXES -------------------- */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
position: absolute;
left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
position: relative;
padding-left: 1.95em;
padding-top: 0.2em;
cursor: pointer;
}
/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
content: '';
position: absolute;
left: 0; top: 0;
width: 1.25em; height: 1.25em;
border: 2px solid #ccc;
background: #fff;
border-radius: 20px;
box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
content: '✔';
position: absolute;
top: .1em; left: .3em;
font-size: 1.3em;
line-height: 0.8;
color: #09ad7e;
transition: all .2s;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
opacity: 0;
transform: scale(0);
}
[type="checkbox"]:checked + label:after {
opacity: 1;
transform: scale(1);
}
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
border: 2px dotted blue;
}
/* -------------------- CHECKBOXES END -------------------- */
.wrapper{
max-width: 1240px;
margin: 0 auto;
display:grid;
grid-template-columns: repeat(6,1fr);
grid-auto-rows: repeat(100px, auto);
grid-gap: 30px;
grid-template-areas:
"block1 block1 block2 block2 block3 block3"
"block1 block1 block2 block2 block3 block3"
". . block6 block6 . ."
". checkbox checkbox checkbox checkbox ."
". . block5 block5 . ."
". block4 block4 block4 block4 . "
". block4 block4 block4 block4 . "
;
}
.block1{
grid-area:block1;
}
.block2{
grid-area:block2;
}
.block3{
grid-area:block3;
}
.block4{
text-align: center;
grid-area:block4;
overflow: scroll;
height: 200px;
overflow-x:hidden;
overflow-y:show;
margin-bottom: 4vh;
}
.block4::-webkit-scrollbar
{
background-color: rgba(245, 245, 245, 0);
}
.block5{
grid-area:block5;
text-align: center;
/*BUTTON STYLE*/
border: none;
font-family: inherit;
font-size: inherit;
color: inherit;
background: none;
cursor: pointer;
padding: 25px 80px;
display: inline-block;
margin: 15px 30px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
background: #cb4e4e;
color: #fff;
box-shadow: 0 6px #ab3c3c;
border-radius: 0 0 5px 5px;
outline: none;
}
.block5:hover {
box-shadow: 0 6px #ab3c3c;
background: rgb(209, 52, 52);
}
/*
.block6{
grid-area:block6;
}
*/
section .wrapper div {
background: #fff;
-webkit-box-shadow: 7px 2px 51px -3px rgba(204,208,224,1);
-moz-box-shadow: 7px 2px 51px -3px rgba(204,208,224,1);
box-shadow: 7px 2px 51px -3px rgba(204,208,224,1);
border-radius: 30px;
padding: 10px 10px;
min-height: 200px;
}
section .wrapper textarea {
background: #fff;
-webkit-box-shadow: 7px 2px 51px -3px rgba(204,208,224,1);
-moz-box-shadow: 7px 2px 51px -3px rgba(204,208,224,1);
box-shadow: 7px 2px 51px -3px rgba(204,208,224,1);
border-radius: 30px;
width:100%;
border-color: rgba(255, 255, 255, 0);
padding: 20px 20px;
min-height: 200px;
font-family: roboto;
font-size: 1em;
}
textarea:focus {
outline: none;
-webkit-box-shadow: 7px 2px 51px -3px rgb(131, 149, 216);
-moz-box-shadow: 7px 2px 51px -3px #6276C0;
box-shadow: 7px 2px 51px -3px #3E5CC9;
}
section .wrapper textarea::placeholder{
color:#C2BABA;
font-weight: lighter;
}
footer {
grid-area: footer;
background: #383636;
}
.block4{
padding: 20px 20px;
}
.block4 p {
margin-bottom: 0px;
line-height: 2px;
}