-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
53 lines (46 loc) · 811 Bytes
/
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
body {
background-color: #2b2b2b;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: 'Courier New', Courier, monospace;
color: #0f0;
}
.main-container {
text-align: center;
background-color: #444;
border: 2px solid #000;
border-radius: 8px;
padding: 20px;
box-shadow: 10px 10px 20px #000;
width: 320px;
}
h1, h2 {
color: #0f0;
}
p {
color: #0f0;
margin-bottom: 20px;
}
ul {
list-style: none;
padding: 0;
}
li {
margin: 10px 0;
}
a {
text-decoration: none;
color: #0f0;
font-size: 18px;
background-color: #333;
padding: 10px;
border-radius: 5px;
display: inline-block;
box-shadow: 3px 3px 8px #000;
}
a:hover {
background-color: #555;
}