-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
78 lines (64 loc) · 1.04 KB
/
style.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
69
70
71
72
73
74
75
76
77
78
body {
background: #f5f6f7;
color: #1b1b32;
font-family: Helvetica, Arial, sans-serif;
margin: 0;
}
header {
height: 70px;
width: 100%;
background-color: #FFBF00;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
}
#logo {
width: 80px;
height: 40px;
}
h1 {
color: white;
font-size: 1.5rem;
margin-left: 20px;
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
}
nav ul li {
margin-right: 20px;
}
nav ul li:last-child {
margin-right: -25;
}
main {
padding: 20px;
}
section {
margin-bottom: 30px;
}
h2 {
font-family: Verdana, Tahoma;
border-bottom: 4px dotted #dfdfe2;
}
label {
display: block;
margin-bottom: 10px;
}
textarea, input[type="file"], button {
margin-top: 5px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
background-color: #FFBF00;
color: white;
cursor: pointer;
}
button:hover {
background-color: #FFA500;
}