-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
80 lines (67 loc) · 1.13 KB
/
styles.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
79
80
body {
background-color: #000;
color: #00FF00;
font-family: 'Courier New', monospace;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #111;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}
header {
text-align: center;
margin-bottom: 20px;
}
header h1 {
font-size: 36px;
text-shadow: 2px 2px 4px rgba(0, 255, 0, 0.5);
}
nav ul {
list-style-type: none;
padding: 0;
text-align: center;
}
nav li {
display: inline;
margin-right: 15px;
}
nav a {
text-decoration: none;
color: #00FF00;
font-size: 18px;
}
nav a:hover {
border-bottom: 2px solid #00FF00;
}
section {
text-align: center;
padding: 20px;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
border: 2px solid #00FF00;
}
table th, table td {
border: 1px solid #00FF00;
padding: 10px;
text-align: left;
}
table th {
background-color: #000;
color: #00FF00;
}
footer {
text-align: center;
margin-top: 50px;
color: #777;
}
footer p {
margin: 0;
}