-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (84 loc) · 1.29 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
* {
box-sizing: border-box;
}
body {
background-color: darkorange;
}
main {
display: block;
max-width: 900px;
border-radius: 8px;
margin: 0 auto;
padding: 30px;
border: 2px solid black;
background-color: white;
}
header {
display: flex;
}
h1 {
font-size: 7vw;
padding: auto;
margin-top: 0%;
margin-bottom: 2%;
width: 100%;
}
h1,
h2 {
font-family: 'Rubik', sans-serif;
font-weight: bold;
}
p {
font-family: 'Rubik';
}
.btn {
background-color: white;
color: black;
border: 2px solid #555555;
border-radius: 2px;
font-size: 1.8vw;
}
.btn:hover {
background-color: #555555;
color: white;
}
@media only screen and (max-width: 992px) {
nav button {
width: 100%;
margin-bottom: 8px;
}
.btn {
font-size: 20px;
}
}
#about,
#why-fac,
#why-sd {
display: none;
}
.icon {
position: relative;
width: 20%;
min-width: 60px;
}
.icon img.icon-hover {
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
object-fit: contain;
opacity: 0;
transition: opacity .3s;
}
.icon:hover img.icon-hover {
opacity: 1;
}
footer {
display: flex;
justify-content: center;
padding-top: 0;
}
footer p {
font-size: 12px;
}