blob: 1a75c96abbcab4eea9d1851ecc6e17a97eaedd86 (
plain)
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
|
.artwork {
.iconset {
padding: 100px 0;
.images {
background-color: rgb(223, 223, 223);
border: 3px dashed white;
padding: 20px;
img {
max-width: 100%;
}
}
}
.button {
display: block;
background: $baseurl+"/static/img/sprite.png" no-repeat;
background-color: #4cc2e4;
background-position: 100% -171px;
width: 310px;
padding: 16px;
color: #fff;
font-size: 24px;
text-decoration: none;
-webkit-transition: background 0.1s linear;
-moz-transition: background 0.1s linear;
transition: background 0.1s linear;
label {
display: block;
font-size: 0.5em;
height: 16px;
}
}
.button:hover {
background-color: #4cd6fc;
color: #fff;
text-decoration: none;
}
.button a:hover {
color: #4cc2e4;
}
}
|