-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (82 loc) · 1.35 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
93
94
95
96
97
98
99
100
/* Styles go here */
body {
width: 500px;
margin: 0 auto;
}
.photo {
max-width: 180px;
max-height: 180px;
border-radius: 100px;
border: solid 10px #be0041;
}
.photo:hover {
border: none;
max-width: 200px;
max-height: 200px;
}
.miniature {
max-width: 100px;
max-height: 100px;
border-radius: 55px;
border: solid 5px #be0041;
}
.miniature:hover {
border: none;
max-width: 110px;
max-height: 110px;
}
#contributors {
margin: 10px 0;
padding: 0;
}
#contributors li {
list-style-type: none;
margin: 0 0 10px 0;
padding: 10px;
border: solid thin #333;
border-radius: 10px;
clear: both;
}
#contributors li img,
#contributors li span {
display: inline-block;
vertical-align: middle;
}
#contributors li img {
margin-right: 20px;
}
dl dt,
dl dd {
float: left;
margin: 0 0 10px 0;
white-space: pre;
min-width: 150px;
}
dl dt,
hr {
clear: both;
}
dl dt:after {
content: ' : ';
}
table tr td,
table tr th {
border: none;
}
table tbody tr:first-child td {
border-top: solid thin #333;
}
table tbody tr:nth-child(even) {
background-color: #EEE;
}
table tbody tr:hover {
background-color: #333;
color: white;
cursor: pointer;
}
table tbody tr:hover a {
color: #EEE;
}
table tbody tr:hover a:hover {
color: white;
}