-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
88 lines (81 loc) · 1.27 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
body, html{
margin: 0;
padding: 0;
font-size: 16px;
font-family: Arial, sans-serif;
width: 100%;
height: 100%;
}
span.codeText{
font-family: Courier, serif;
color: red;
background: #fff;
font-weight: bold;
}
span.important{
color: red;
font-weight: bold;
}
p{
font-size: 1.1em;
color: darkslategray;
}
main.wrapper{
background: #FAFAFA;
max-width: 900px;
min-height: 800px;
border: 1px solid #ccc;
border-top: 0;
border-bottom: 0;
padding: 15px;
margin: 0 auto;
overflow: hidden;
}
.statusBox{
display: block;
width: 300px;
height: 50px;
border: 1px solid black;
padding: 0;
background: #fff;
position: relative;
margin: auto;
}
.statusBar{
margin: 0;
padding: 0;
background-color: green;
height: 50px;
width: 10px;
position: absolute;
top: 0px;
left: 0px;
}
.button{
font-size: 1.1em;
padding: 0.8em;
color: white;
border: 1px solid white;
border-radius: 8px;
background-color: dodgerblue;
}
.button:disabled{
background-color: red;
}
#loadAssets{
position: absolute;
left: 310px;
}
pre.sampleCode{
overflow: auto;
background: black;
color: #fff;
width: 100%;
max-width: 100%;
padding: 5px;
}
@media (max-width: 600px){
main.wrapper{
width: 100%;
}
}