-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (53 loc) · 1.02 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
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,400;0,700;1,400;1,700&display=swap');
* {
font-family: 'Karla', sans-serif;
}
.home {
height: 100vh;
background: url("img/wallpaper.jpg");
background-size: cover;
background-repeat: no-repeat;
background-blend-mode: multiply;
background-color: #9c9c9c;
}
.logo-home {
max-width: 200px;
}
.centered {
top: 50%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
position: absolute;
width: 100%;
}
@media screen and (max-width: 640px) {
.logo-home {
max-width: 150px;
}
}
.nav-link.active {
/* background-color: black !important; */
}
.bg-dark {
background-color: #0E141B !important;
}
.bg-dark-secondary {
background-color: #151E28;
}
.bg-dark-tertiary {
background-color: #1C2835;
}
h1 {
font-weight: bold;
}
p {
color: #d3d3d3;
}
.hidden {
display: none;
}
@media (max-width: 1200px) {
.title-home {
font-size: calc(1.5rem + 1vw);
}
}