-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (42 loc) · 877 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Meie+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Meie+Script&family=Mogra&display=swap');
*{
margin: 0;
}
body{
background-color: rgb(0, 0, 0);
}
nav{
display: flex;
justify-content: flex-end;
background-color: brown;
padding: 8px;
box-shadow: 1px 2px;color: rgb(255, 255, 255);
}
#logo{
color: rgb(232, 183, 135);
font-size: 35px;
font-family: "Meie Script", cursive;
font-weight: 400;
font-style: normal;
margin-right: auto;
}
li{
list-style: none;
display: inline;
padding: 10px;
font-size: 30px;
}
a{
text-decoration: none;
color: rgb(255, 255, 255);
font-family: "Mogra", system-ui;
font-weight: 400;
font-style: normal;
}
#list{
margin-top: 20px;
}
a:hover{
color: rgb(0, 0, 0);
}