-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
60 lines (59 loc) · 904 Bytes
/
Copy pathstyles.css
File metadata and controls
60 lines (59 loc) · 904 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
53
54
55
56
57
58
59
60
*{
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
text-decoration: none;
}
body{
background-color: aquamarine;
}
header{
display: flex;
gap: 65px;
padding: 20px;
font-size: 15px;
margin-left: 1200px;
}
nav,ul{
display:flex;
list-style: none;
gap: 15px;
padding-top: 2px;
text-decoration: none;
}
.rich{
margin: 2pxpx;
color:white;
}
.self{
text-align: center;
margin-top: 200px;
color: black;
}
button{
background: white;
cursor: pointer;
margin-top: 20px;
color: rgb(22, 2, 2);
border-color: aliceblue;
border-radius: 50px;
}
a:hover{
background-color: black;
text-decoration: underline;
}
:visited{
color:hotpink;
}
:active{
color: yellowgreen;
}
button:hover{
background-color: greenyellow;
}
.pee{
font-style: italic;
font-size: large;
color: blue;
}