-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
74 lines (74 loc) · 1.34 KB
/
index.css
File metadata and controls
74 lines (74 loc) · 1.34 KB
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
text-decoration: none;
list-style: none;
}
body {
/*
background-image: url("../image/bg/card_bg.jpg");
background: black;
*/
background-image: url("https://vantenoxid.web.app/image/bg/dark_forest.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.br-50p {
border-radius: 50%;
}
.nav:hover {
background: rgba(150, 150, 150, 1);
transform: scale(1.05);
transition: all 0.3s;
}
.nav:hover span {
transition: all 0.3s;
color: #fff !important;
}
.p7% {
color: red;
}
.w-mx {
width: 100%;
}
.link:hover {
background-color: rgba(42, 42, 42, 0.5) !important;
transform: scale(1.03);
transition: all 0.3s;
}
.link:hover div.open {
background-color: rgba(198, 198, 198, 0.555) !important;
transition: all 0.3s;
}
.link:hover div.open span,
.link:hover div.open i {
color: rgb(22, 22, 22) !important;
transition: all 0.3s;
}
.nav-menu {
transform: translateY(100%);
transition: 0.5s;
position: fixed;
bottom: 0;
}
.nav-menu.active {
display: flex !important;
transform: translateY(0);
}
@media (min-width: 768px) {
body {
height: 100vh !important;
justify-content: center;
}
main {
margin: 0;
}
nav a {
font-size: 1.5rem !important;
}
nav div span {
font-size: 2rem !important;
}
}