-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (74 loc) · 1.11 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
html {
height: 100%;
font-family: 'Nunito Sans', sans-serif;
}
body {
height: 100%;
background-color: #1a1a1a;
display: flex;
justify-content: center;
align-items: center;
}
a {
text-decoration: none;
color: orange;
color: grey;
font-size: 400%;
transition: all 0.5s;
}
a:hover {
color: orange;
}
nav {
width: 18rem;
height: 15.6rem;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
nav > div {
min-width: 9rem;
min-height: 10rem;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
strong {
color: orange;
/* color: grey; */
min-height: 1.125rem;
display: block;
letter-spacing: 0.1rem;
/* text-transform: uppercase; */
}
/* CV */
#CV a {
margin-top: 1rem;
}
#CV div {
min-height: 1.375rem;
}
/* Github */
#Github a {
margin-top: 1rem;
}
#Github div {
min-height: 1.375rem;
}
/* Mario */
#Mario {
min-height: 9rem;
}
#Mario div {
min-height: 2.75rem;
text-align: center;
}
@media screen and (max-width: 800px) {
strong {
/* color: orange; */
}
a {
/* color: orange; */
}
}