-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (53 loc) · 959 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
54
55
56
57
58
59
60
61
62
63
64
body {
background-color: #ffffff ;
color: #000000;
font-family: "Courier New", monospace;
text-align: center;
margin: 50px;
}
h1 {
color: #800000;
}
p {
margin: 20px 0;
text-align: left;
}
.retro-box {
border: 2px solid #800000;
background-color: #ffcc00;
padding: 20px;
margin: 30px auto;
max-width: 600px;
text-align: left;
}
.retro-button {
background-color: #800000;
color: #ffffff;
padding: 10px 20px;
border: none;
cursor: pointer;
font-family: "Courier New", monospace;
text-transform: uppercase;
letter-spacing: 2px;
}
.retro-button:hover {
background-color: #ffcc00;
color: #800000;
}
a {
color: black;
}
a:visited {
color: grey;
}
a:hover {
color: blue;
}
a:active {
color:white:
}
.retro-image {
max-width: 100%;
height: auto;
margin: 20px 0;
}