-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
102 lines (84 loc) · 1.3 KB
/
styles.css
File metadata and controls
102 lines (84 loc) · 1.3 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
}
.container {
width: 80%;
margin: 0 auto;
}
header {
background-color: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
nav {
background-color: #444;
}
nav ul {
list-style-type: none;
display: flex;
justify-content: center;
padding: 10px;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-weight: bold;
}
nav ul li a:hover {
color: #f4a261;
}
section {
padding: 40px 0;
}
section h2 {
margin-bottom: 20px;
color: #333;
}
section p {
font-size: 1.1em;
color: #666;
}
section ul {
list-style-type: disc;
margin-left: 20px;
}
form {
display: flex;
flex-direction: column;
}
form label {
margin-bottom: 10px;
font-weight: bold;
}
form input, form textarea {
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ccc;
font-size: 1em;
}
form button {
background-color: #f4a261;
color: white;
padding: 10px;
border: none;
cursor: pointer;
}
form button:hover {
background-color: #e76f51;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
}