-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (39 loc) · 686 Bytes
/
style.css
File metadata and controls
45 lines (39 loc) · 686 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
body {
background-color: black;
font-family: 'Courier New', Courier, monospace;
color: white;
text-align: center;
padding: 0;
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container {
max-width: 600px;
padding: 20px;
}
h1 {
font-size: 2.5em;
margin-bottom: 20px;
}
ul {
list-style-type: none;
padding: 0;
}
ul li {
margin: 10px 0;
}
button {
background-color: #333;
color: white;
border: 1px solid white;
padding: 10px 20px;
cursor: pointer;
font-size: 1em;
transition: background-color 0.3s;
}
button:hover {
background-color: #555;
}