-
Notifications
You must be signed in to change notification settings - Fork 33
/
art_neon.css
145 lines (131 loc) · 4.42 KB
/
art_neon.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
body {
background-color: black;
height: 100%;
overflow: hidden;
font-family: sans-serif;
font-size: 12px;
}
#colors {
position: absolute;
top: 54px;
left: 8px;
padding: 0;
margin: 0;
width: 200px;
}
#colors li {
display: inline-block;
opacity: 0.3;
width: 64px;
height: 64px;
margin: 8px;
border-radius: 64px;
border-radius: 50%;
border: 2px solid white;
cursor: pointer;
-webkit-transition: opacity ease-in-out 0.5s;
-moz-transition: opacity ease-in-out 0.5s;
transition: opacity ease-in-out 0.5s;
}
ul#colors li:hover, #colors li.active {
opacity: 1.0;
width: 80px;
height: 80px;
margin: 0;
-webkit-transition: all ease-in-out 0.5s;
-moz-transition: all ease-in-out 0.5s;
transition: all ease-in-out 0.5s;
}
#colors li.active {
opacity: 0.3;
}
canvas {
clear: left;
}
#clear {
right: 300px;
}
#clear:hover {
background: rgb(170,14,0); /* Old browsers */
background: -moz-linear-gradient(top, rgba(170,14,0,1) 0%, rgba(190,13,0,1) 50%, rgba(148,7,0,1) 51%, rgba(150,8,0,1) 71%, rgba(154,3,0,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(170,14,0,1)), color-stop(50%,rgba(190,13,0,1)), color-stop(51%,rgba(148,7,0,1)), color-stop(71%,rgba(150,8,0,1)), color-stop(100%,rgba(154,3,0,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(170,14,0,1) 0%,rgba(190,13,0,1) 50%,rgba(148,7,0,1) 51%,rgba(150,8,0,1) 71%,rgba(154,3,0,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(170,14,0,1) 0%,rgba(190,13,0,1) 50%,rgba(148,7,0,1) 51%,rgba(150,8,0,1) 71%,rgba(154,3,0,1) 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, rgba(170,14,0,1) 0%,rgba(190,13,0,1) 50%,rgba(148,7,0,1) 51%,rgba(150,8,0,1) 71%,rgba(154,3,0,1) 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#aa0e00', endColorstr='#9a0300',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, rgba(170,14,0,1) 0%,rgba(190,13,0,1) 50%,rgba(148,7,0,1) 51%,rgba(150,8,0,1) 71%,rgba(154,3,0,1) 100%); /* W3C */
border: 2px solid #ddd;
}
#share {
right: 135px;
}
#download {
right: 8px;
}
.button {
-webkit-transition: all ease-in-out 0.5s;
-moz-transition: all ease-in-out 0.5s;
transition: all ease-in-out 0.5s;
box-shadow: 0 0 10px black inset;
position: absolute;
margin: 8px;
top: 4px;
right: 8px;
color: #ddd;
font-weight: bold;
display: block;
text-align: center;
width: 100px;
border-radius: 10px;
padding: 8px;
border: 2px solid #666;
text-decoration: none;
background: #4c4c4c; /* Old browsers */
background: -moz-linear-gradient(top, #4c4c4c 0%, #595959 12%, #666666 25%, #474747 39%, #2c2c2c 50%, #000000 51%, #111111 60%, #2b2b2b 76%, #1c1c1c 91%, #131313 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4c4c4c), color-stop(12%,#595959), color-stop(25%,#666666), color-stop(39%,#474747), color-stop(50%,#2c2c2c), color-stop(51%,#000000), color-stop(60%,#111111), color-stop(76%,#2b2b2b), color-stop(91%,#1c1c1c), color-stop(100%,#131313)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* W3C */
}
.button:hover {
color: #fff;
border-color: #fff;
}
#social {
position: absolute;
left: 380px;
top: 15px;
height: 10px;
width: 300px;
}
#social > * {
float: left;
opacity: 0.5;
}
#social > *:hover {
opacity: 1.0;
}
h1, p {
color: #fff;
opacity: 0.5;
position: absolute;
top: -10px;
left: 15px;
font-family: Michroma, sans-serif;
}
p {
top: 8px;
left: 150px;
}
h1:hover, p:hover {
opacity: 1.0;
}
h1 a, p a {
color: #fff;
text-decoration: none;
}
noscript {
color: white;
}