-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (43 loc) · 717 Bytes
/
Copy pathstyle.css
File metadata and controls
43 lines (43 loc) · 717 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
body{
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
background-color: white;
}
.hero{
background-color: rgb(176, 176, 212);
color: white;
padding: 50px 20px;
}
.hero h1{
margin-bottom: 10px;
}
.hero button{
margin: 10px;
padding: 10px 20px;
background-color: green;
color: white;
border: none;
cursor: pointer;
}
h2{
margin: 20px 0;
color: darkblue;
}
ul{
list-style: none;
padding: 0;
}
li{
margin: 10px, 0;
background: white;
padding: 10px;
border: 1px, solid #ddd;
}
footer{
background: #807d7d;
color:white;
padding: 20px;
margin-top: 20px;
}