-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhf.css
More file actions
52 lines (48 loc) · 929 Bytes
/
hf.css
File metadata and controls
52 lines (48 loc) · 929 Bytes
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
.nav{
/* box-sizing: border-box; */
border: none;
position: fixed;
top:0;
display:flex;
justify-content: space-between;
align-items: center;
width: 98%;
padding: 10px;
margin:0.5% 1%;
background-color: rgba(0, 0, 0, 0.375);
border-radius: 10px;
}
.logo{
font-size: 1.4rem;
color: whitesmoke;
}
.middle-part ul {
list-style: none;
}
.middle-part ul li {
display: inline;
font-weight: bold;
padding:0 5px;
}
.middle-part ul a {
color: whitesmoke;
font-family: 'Inter', sans-serif;
font-size: 1.2rem;
}
.button{
border:3px solid white;
font-size: 1.4rem;
font-family: 'Space Mono', monospace;;
color: rgb(245, 245, 245);
padding: 2px 5px;
border-radius: 13px;
}
.button>a{
text-decoration: none;
color: white;
}
.active, .dot:hover {
padding: 5px;
border: solid white 1px;
border-radius: 10px;
}