-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (41 loc) · 839 Bytes
/
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
@import "sharedStyles.css";
@import "socialLinks.css";
@import "avtrAnimation.css";
.centered-flex {
display: flex;
justify-content: center;
align-items: center;
}
.full-size {
width: 100%;
height: 100%;
}
nav > ul {
writing-mode: vertical-lr;
text-orientation: upright;
list-style-type: none;
padding: 0;
}
nav > ul > li {
margin: 20px;
}
nav > ul > li > a {
text-decoration: line-through;
padding: 10px 20px;
font-size: 4vh;
}
@media (orientation: landscape) {
nav {
flex-direction: row;
}
}
@media (orientation: portrait) {
nav {
flex-direction: column;
}
}
nav > ul > li > a:focus,
nav > ul > li > a:hover {
box-shadow: 0 0 5px var(--neonViolet), 0 0 25px var(--neonViolet), 0 0 50px var(--neonViolet),
0 0 100px var(--neonViolet);
}