-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
74 lines (64 loc) · 1.18 KB
/
styles.css
File metadata and controls
74 lines (64 loc) · 1.18 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
/* Reset default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body styles */
body {
font-family: 'Courier New', monospace;
background-color: #000;
color: #0f0;
line-height: 1.6;
}
/* Header styles */
header {
background-color: #000;
text-align: center;
padding: 2rem;
}
/* Navigation styles */
nav.topnav {
list-style: none;
display: flex;
justify-content: center;
background-color: #222;
padding: 1rem;
}
nav a {
text-decoration: none;
color: #0f0;
margin: 0 1rem;
font-size: 16px;
transition: color 0.3s ease;
}
nav a:hover {
color: #f00;
}
/* Section styles */
section {
padding: 2rem;
}
/* Product listing styles */
.product {
background-color: #333;
padding: 1rem;
margin-bottom: 1rem;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.product h2 {
color: #f00;
font-size: 18px;
margin-bottom: 0.5rem;
}
.product p {
color: #ddd;
font-size: 14px;
}
/* Footer styles */
footer {
text-align: center;
background-color: #111;
padding: 1rem;
}