-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponsive.css
50 lines (41 loc) · 1 KB
/
responsive.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
/* || SCREEN */
@media screen and (min-width: 720px) {
.header {
padding-bottom: 3rem;
}
.main {
flex-direction: row;
}
.main__section:first-of-type {
width: 80%;
min-height: 70rem;
margin-left: 2rem;
}
.main__section:last-of-type {
width: 40%;
min-height: 70rem;
margin-right: 2rem;
}
.btn__container:first-of-type {
gap: 5rem;
}
.btn {
width: 35%;
min-height: 6rem;
}
.main__btn {
width: 20%;
}
}
/* || THEME */
.light {
--BGCOLOR: rgba(229, 229, 229, 1);
--BGCOLOR-RESULT: rgba(245, 245, 245, 1);
--BOX-SHADOW:rgba(0, 0, 0, 0.35) 0px 5px 15px;
--FONT-COLOR: rgba(0, 0, 0, 1);
--BTN-COLOR: rgb(14, 71, 141);
--BTN-COLORHOVER: rgba(10, 56, 113, 0.8);
--OUTLINE-COLOR: rgba(0, 0, 0, 1);
--BGCOLOR-FOOTER: rgba(19, 17, 20, 1);
--FONT-COLORFOOTER: rgba(245, 245, 245, 1);
}