-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlegacy.css
More file actions
97 lines (84 loc) · 1.74 KB
/
Copy pathlegacy.css
File metadata and controls
97 lines (84 loc) · 1.74 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/* Retro 90s Styling */
body {
background-color: #c0c0c0;
font-family: "Verdana", "Arial", "Helvetica", sans-serif, "Times New Roman", Times, serif;
color: #000000;
margin: 0;
padding: 0;
}
a {
color: #000000;
text-decoration: underline;
}
a:visited {
color: #444444;
}
a:active {
color: #666666;
}
h1,
h2,
h3 {
font-family: Arial, Helvetica, sans-serif;
margin-top: 5px;
margin-bottom: 5px;
}
table {
border-collapse: collapse; /* Not strictly 90s but makes it cleaner */
}
.beveled-box {
border-top: 2px solid #ffffff;
border-left: 2px solid #ffffff;
border-right: 2px solid #808080;
border-bottom: 2px solid #808080;
background-color: #c0c0c0;
padding: 5px;
}
.inset-box {
border-top: 2px solid #808080;
border-left: 2px solid #808080;
border-right: 2px solid #ffffff;
border-bottom: 2px solid #ffffff;
background-color: #ffffff;
padding: 2px;
}
.marquee-container {
background-color: #000000;
color: #ffffff;
font-weight: bold;
font-family: "Courier New", Courier, monospace;
padding: 2px;
overflow: hidden;
white-space: nowrap;
}
.sidebar-link {
display: block;
margin-bottom: 10px;
}
.track-row td {
padding: 2px 5px;
border: 1px solid #808080;
}
.controls {
text-align: center;
padding: 10px;
background-color: #a0a0a0;
border: 2px outset #ffffff;
}
button {
background-color: #c0c0c0;
border-top: 2px solid #ffffff;
border-left: 2px solid #ffffff;
border-right: 2px solid #000000;
border-bottom: 2px solid #000000;
padding: 2px 10px;
font-family: Arial, sans-serif;
font-size: 12px;
cursor: pointer;
}
button:active {
border-top: 2px solid #000000;
border-left: 2px solid #000000;
border-right: 2px solid #ffffff;
border-bottom: 2px solid #ffffff;
}