blob: a3247a49e2e774fe45746c9dfe6a3390f8a6a76c (
plain)
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
|
nav#top {
width: 100%;
background-color: firebrick;
display: flex;
justify-content: space-between;
align-items: center;
ul {
display: flex;
flex-wrap: wrap;
list-style-type: none;
padding: 0;
margin: 0;
}
li {
padding: 12px 0;
}
a {
padding: 12px;
color: white;
text-decoration: none;
}
a:hover {
background-color: tomato;
}
#authentication {
display: flex;
flex-wrap: wrap;
justify-content: right;
}
button {
margin: 0.5rem 0.5rem 0.5rem 0;
}
}
|