forked from oxy-compsci/brick-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
67 lines (59 loc) · 1.12 KB
/
stylesheet.css
File metadata and controls
67 lines (59 loc) · 1.12 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
body {
background-color: #333333;
}
#title {
font-size: 50px;
color: white;
text-align: center;
font-family: HelvLight, 'Trebuchet MS', sans-serif;
}
#container {
width: 69%;
height: 600px;
position: absolute;
display: inline-block;
}
#buttonContainer {
width: 30%;
max-width: 150px;
height: 550px;
display: inline-block;
position:relative;
text-align:center;
}
.addBlockButton {
border: solid black 1px;
color: white;
font-weight: 600;
padding: 25px 0;
width: 125px;
text-align: center;
font-size: 16px;
border-radius: 5px;
margin: 0px auto;
cursor: pointer;
}
.highlight {
background-color: #8a08b5;
}
.conditionalHighlight {
background-color: blue;
}
#parseButton, #parseButton:enabled {
border: solid black 1px;
background-color: red;
color: white;
font-weight: 600;
padding: 10px;
text-align: center;
font-size: 16px;
border-radius: 5px;
margin: 0px auto;
float: right;
cursor: pointer;
}
#parseButton:disabled {
background-color: grey;
color: white;
cursor: default;
}