-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (57 loc) · 958 Bytes
/
Copy pathstyle.css
File metadata and controls
57 lines (57 loc) · 958 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #935252;
}
nav {
background-color: #333;
color: rgb(201, 122, 122);
padding: 15px;
}
nav h2 {
display: inline;
color:white !important;
margin-left: 10px;
}
nav ul {
list-style: none;
float: right;
margin-right: 20px;
}
nav ul li {
display: inline;
margin-left: 20px;
}
nav ul li a {
color: white;
text-decoration: none;
}
section {
background-color: white;
margin: 20px;
padding: 40px;
border-radius: 10px;
}
h1, h2 {
color: #100c0c;
}
ul {
padding-left: 20px;
}
input, textarea {
width: 60%;
padding: 8px;
margin-top: 5px;
margin-bottom: 15px;
}
button {
background-color: #333;
color: white;
padding: 10px 15px;
border: none;
cursor: pointer;
}
button:hover {
background-color: #4a3d3d;
}