-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
64 lines (64 loc) · 1.76 KB
/
styles.css
File metadata and controls
64 lines (64 loc) · 1.76 KB
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Georgia, 'Times New Roman', Times, serif;
}
body{
background-color: bisque;
}
header{
background: linear-gradient(135deg, hsl(12, 95%, 58%) 0%, #da8b30 100%);
color: white;
text-align: center;
margin-top: 30px;
padding: 8px 0;
border-radius: 10px;
}
ul{
display: flex;
justify-content: space-around;
list-style: none;
background-color: hsl(7, 98%, 50%);
margin-top: 10px;
margin-left: 40px;
margin-right: 40px;
padding: 6px 0;
border-radius: 15px;
position: sticky;
top: 20px;
}
a{
color: rgb(247, 246, 244);
text-decoration: none;
}
a:hover{
color: rgb(16, 213, 224);
cursor: progress;
}
.content{
margin:auto;
justify-content:center;
width: 80%;
}
.content h2{
color: #da8b30;
}
.content p{
color: rgb(168, 104, 21);
}
section{
background-color: whitesmoke;
margin: 20px;
padding: 10px;
border-radius: 8px;
box-shadow: 4px 2px 8px gray;
}
footer{
background: linear-gradient(135deg, hsl(12, 95%, 58%) 0%, #da8b30 100%);
color: white;
text-align: center;
margin-top: 30px;
padding: 8px 0;
border-radius: 10px;
}