-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
92 lines (74 loc) · 1.6 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/* Ryan Fait's HTML5 CSS Sticky Footer*/
* {
margin: 0;
}
html, body {
height: 100%;
}
.header {
padding-bottom: 25px;
border: 1px solid lightgray;
background-color: #F0F0F0;
margin-bottom: 20px;
}
.wrapper {
min-height: 100%;
margin: 0 auto -80px; /* the bottom margin is the negative value of the footer's height */
}
.push {
height: 80px;
clear: both;
}
.footer {
height: 80px;
text-align: center;
background-color: #F0F0F0;
padding-top: 15px;
border: 1px solid lightgray;
clear: both;
}
H3, H4 {
text-align: center
}
.form-inline {
text-align: center
}
/* clickable div stuff here */
.clickable {
padding: 5px;
height: 76px;
border: 2px solid lightgray;
border-bottom-width: 0px;
}
div.clickable:hover {
background-color: #E0E0E0;
}
div.clickable:active {
background-color: #D8D8D8;
}
div.clickable {
/* Containing div must have a position value */
position: relative;
background-color: #F8F8F8;
vertical-align: middle;
}
div.clickable a {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
text-decoration: none; /* Makes sure the link doesn't get underlined */
z-index: 10; /* raises anchor tag above everything else in div */
background-color: #F8F8F8; /*workaround to make clickable in IE */
opacity: 0; /*workaround to make clickable in IE */
filter: alpha(opacity=1); /*workaround to make clickable in IE */
}
div.clickable:last-of-type {
border-bottom-width: 2px;
height: 78px;
}
img.list {
width: 64px;
max-height: 64px;
}