-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
74 lines (60 loc) · 1011 Bytes
/
stylesheet.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
.title {
font-family: 'Pacifico', cursive;
text-align: center;
float: left;
font-size: 25px;
position: absolute;
margin-top: 12%;
}
.grid_controls {
text-align: center;
}
.button {
position: absolute;
padding: 15px 32px;
background-color: lightgray;
text-align: center;
font-size: 16px;
}
.box {
margin:0;
border:1px white;
box-sizing:border-box;
float:left;
}
.container{
padding:1px;
}
/*=================
General
=================*/
body {
background: salmon;
}
/*=================
Sketchpad Holder
=================*/
.container {
width: 500px;
height: 400px;
background-color: none;
overflow: hidden;
margin: auto;
position: relative;
top: 20px;
border: 3px;
border-color: black;
border-style: solid;
}
.box {
background: lightgray;
position: relative;
}
.clear {
position: relative;
margin: auto;
text-align: center;
}
.box.black {
background-color: #67696d;
}