-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (64 loc) · 1.21 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
html {
height: 100%;
width: 100%;
}
body {
margin: 0;
color: black;
background-color: white;
}
nav {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
padding: 0.5rem;
gap: 0.5rem;
background-color: #eee;
border-bottom: 2px solid #aaa;
}
nav a {
display: inline-block;
min-width: 9rem;
padding: 0.5rem;
border-radius: 0.2rem;
border: solid 1px rgb(22, 22, 22);
text-align: center;
text-decoration: none;
color: #1b1b1b;
}
nav a:hover {
background-color: black;
color: white;
border-right: 2px solid white;
border-left: 2px solid white;
}
nav a[aria-current='page'] {
color: #000;
background-color: #d4d4d4;
}
main {
padding: 0.5rem;
}
h1{
text-align: center;
}
.box {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.folder-link {
color: white;
padding: 1rem 2.5rem;
background-color: black;
margin: 0.5rem;
text-decoration: none;
font-size: 1.1rem;
border-radius: 15px;
}
.folder-link:hover {
background-color: #eee;
color: black;
}