-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.css
94 lines (93 loc) · 1.56 KB
/
default.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
body {
backround: white;
font: normal normal normal 14px/18px "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, sans-serif;
margin: 40px 20px;
text-align: center;
}
div.page {
margin: 0 auto;
text-align: left;
width: 520px;
}
h1 {
color: #666;
font-size: 60px;
line-height: 60px;
text-align: left;
text-transform: uppercase;
}
ul {
margin: 0 0 0 212px;
}
li {
list-style: none;
padding: 0;
}
a {
color: black;
text-decoration: none;
}
a:hover {
color: blue;
}
img {
border: none;
}
img.avatar {
background: #f0f0f0;
border: 1px solid #ccc;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
float: left;
padding: 10px;
transition: background 1s linear;
-o-transition: background 1s linear;
-moz-transition: background 1s linear;
-webkit-transition: background 1s linear;
}
img.avatar:hover {
background: #ccf;
border: 1px solid #666;
}
li a {
display: block;
padding: 15px 10px 15px 10px;
}
li a img {
opacity: 0.2;
padding: 0 20px 0 0;
vertical-align: middle;
transition: opacity 1s linear;
-o-transition: opacity 1s linear;
-moz-transition: opacity 1s linear;
-webkit-transition: opacity 1s linear;
}
li a:hover img {
opacity: 1;
}
@media screen and (max-width: 600px) {
div.page {
margin: 0 auto;
text-align: left;
width: 340px;
}
h1 {
font-size: 30px;
line-height: 30px;
}
img.avatar {
float: none;
}
ul {
margin: 0;
padding: 0;
}
li a {
padding: 10px 0 10px 5px;
}
li a img {
opacity: 1;
padding: 0 10px 0 0;
}
}