-
Notifications
You must be signed in to change notification settings - Fork 0
/
bad.css
73 lines (62 loc) · 1.11 KB
/
bad.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
/*
Name: Austin Jenchi
Date: April 2, 2019
Section: CSE 154 AQ 19sp
Some basic CSS styles for my "ugly website" page.
*/
body {
background: olivedrab;
color: white;
font-family: Arial, sans-serif;
width: 1220px;
}
header, aside, main {
border: white 2px dotted;
}
header img {
border-right: white 3px dotted;
vertical-align: middle;
width: 200px;
}
header h1 {
display: inline;
}
aside {
float: left;
height: 928.34px;
width: 200px;
}
nav a {
background: url('img/ohno/button-1.png') no-repeat;
text-align: center;
width: 200px;
height: 50px;
display: block;
padding-top: 15px;
color: white;
text-decoration: none;
}
nav a:hover {
background-image: url('img/ohno/button-2.png');
}
figure {
text-align: center;
}
main {
margin-left: 200px;
padding: 8px;
width: 1000px;
}
section#counter {
text-align: center;
}
aside section#counter span {
background: black;
height: 25px;
color: red;
display: inline-block;
padding: 2px;
padding-top: 8px;
width: 60px;
text-shadow: 0 0 10px red;
}