-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
130 lines (112 loc) · 1.85 KB
/
main.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
h1 {
text-align: center;
color: white;
margin: 0px 0px;
}
body {
z-index: -50;
background-image: url("http://wallpapercave.com/wp/afyhOaU.jpg");
background-size: 1200px 700px;
background-attachment: fixed;
no-repeat fixed top left;
}
label {
color: white;
}
#color_input {
width: 1px;
height: 1px;
visibility: hidden;
}
.container {
display: block;
margin: 0px auto;
width: 100%;
padding: 0;
}
#label {
font-size: 14px;
position: absolute;
top: 5px;
left: 42%;
color: white;
}
#color_input:focus {
outline: none;
}
#container {
display: inline-block;
text-align: center
}
.button {
position: relative;
background-color: black;
text-align: center;
vertical-align: middle;
border-radius: 15px;
margin: 6px 6px;
color: white;
visibility: hidden;
}
.button:hover {
cursor: pointer;
}
.colorPickerWrapper div {
display: inline-block;
width: 46%;
}
section.border button {
color: white;
background: rgba(0,0,0,0);
border: solid 5px white;
margin-top: 15px;
}
section.border button:hover,
section.border button.hover {
border-color: black;
color: black;
}
section.border button:active,
section.border button.active {
border-color: #27496d;
color: #27496d;
}
.controls {
border-radius: 15px;
background-color: grey;
opacity: 0.8;
width: 50%;
margin: 10px auto;
display: block;
padding: 8px;
z-index: 400;
}
.grid_size {
text-align: center;
vertical-align: middle;
color: white;
height: 1px;
}
#grid {
width: auto;
display: inline-block;
border: 3px solid grey;
background: white;
margin: 0px auto;
visibility: hidden;
}
div.row:after {
content: ".";
height: 0;
visibility: hidden;
display: block;
clear: both;
}
/*this is cells*/
div.row div {
background-color: transparent;
border: 1px solid grey;
float: left;
width: 10px;
height: 10px;
}