-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
97 lines (96 loc) · 1.27 KB
/
stylesheet.css
File metadata and controls
97 lines (96 loc) · 1.27 KB
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
body {
background: pink;
font: normal 16px Helvetica, Arial, sans-serif;
}
canvas {
display: block;
background-color: white;
border: 1px solid black;
margin: auto;
}
div.wrapper {
text-align: center;
margin: 20px;
}
a {
font-size: 25px;
}
/*FORMS*/
.form_heading {
font-size: 22px;
display: block;
margin: 20px 0 5px 0;
}
fieldset {
border: none;
}
main label {
display: inline-block;
margin: 15px 7px;
}
/*INPUTS*/
input[type=text],
input[type=number] {
padding: 5px;
}
#name {
width: 100%;
text-align: center;
}
input#clear {
float: right;
}
input#title {
display: block;
font-size: 40px;
text-align: center;
width: 100%;
}
/*BUTTONS*/
input[type=submit] {
background: magenta;
padding: 25px;
margin-top: 10px;
}
input.active,
input.eraseActive {
background-color: grey;
}
#eraser {
margin-left: 20px;
}
input {
vertical-align: middle;
font-size: 20px;
border: none;
border-radius: 3px;
}
#shapes {
display: inline-block;
}
/*OVERLAY*/
#set_canvas {
margin-top: 25px;
}
#setup {
position: fixed;
z-index: 3;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 500px;
height: 500px;
background: lightblue;
text-align: center;
margin: auto;
}
#tint {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0, 0, 0, .2);
z-index: 2;
}