forked from TeekshaHarish/FunFusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtp.css
39 lines (38 loc) · 750 Bytes
/
htp.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
*{
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.content{
font-size: 1.3rem;
}
.links{
text-decoration: none;
color:white;
}
.links:hover{
color:rgb(255, 246, 191);
}
.navbar{
background-color: #5f0d5f;
/* background-color: #930093; */
color:white;
font-size: 25px;
padding: 5px 15px;
font-family: 'Roboto', sans-serif;
height: 50px;
display: flex;
align-items: center;
justify-content: left;
}
.brand{
color:white;
text-decoration: none;
margin-left: 20px;
}
.brand:hover{
color:rgb(249, 235, 221);
}
.myFooter{
position: fixed;
bottom: 0;
width:100vw;
}