-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
76 lines (63 loc) · 1.26 KB
/
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
65
66
67
68
69
70
71
72
73
74
75
76
body {
font-family: Arial;
background: yellow;
margin: 0px;
overflow: hidden;
}
#info {
margin: 0px;
line-height: 0px;
padding: 0px;
font-family: Petit Formal Script;
color: #5f3f10;
position: relative;
top: 0px;
left:300px;
width: 100%;
display:block;
}
#ribbon {
margin: 0px;
padding: 0px;
position: relative;
top: 0px;
left:0px;
width: 100px;
}
#space {
color: dark grey;
position: absolute;
top: 100px;
width: 100%;
left: 700px;
display: block;
}
#list {
visibility: visible;
text-transform: none;
font-size: 14px;
text-decoration: none;
font-family: Arial;
list-style-type: none;
color: dark grey;
position: absolute;
top: 200px;
width: 100%;
left: 300px;
display: block;
}
a {
font-family: Arial;
background-color: white;
color: fuchsia; }
a:visited {
color: fuchsia;
background-color: white;
text-decoration: none;
}
a:hover {
text-decoration: none;
color: white;
background-color: fuchsia;
}
}