-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrealted.css
68 lines (59 loc) · 1.34 KB
/
realted.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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Roboto+Condensed:wght@300&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: rgb(214, 226, 252);
margin: 2rem;
text-align: center;
list-style-position:inside;
}
li a{
text-decoration: none;
}
nav{
border: solid ;
border-color: rgb(77, 75, 75);
border-radius: 20px;
margin: 0 auto 1rem;
max-width: 500px;
line-height: 5rem;
font-size: larger;
}
h2{
background-color: rgb(142, 142, 209);
border-radius: 1rem 1rem 0 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
ul{
list-style-type: none;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
a{
color: rgb(131, 115, 115);
font-size: x-large;
}
li a:hover{
color: rgb(145, 87, 135);
transition: .7s;
}
li{
border-top: 1px solid;
}
li a:focus{
background: none;
cursor: pointer;
background-color: rgb(3, 3, 2);
transition: 0.7s;
}
.text a{
text-decoration: none;
}
li a {
display: block;
}
li:last-child a{
border-radius: 0 0 1rem 1rem ;
}