-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (73 loc) · 1.46 KB
/
style.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
body,header,footer,div,canvas,textarea {
box-sizing: border-box;
font-family: 'Open Sans', sans-serif;
}
h2, h2 a:link, h2 a:visited {
color: #ddd;
}
h1, h2 { margin: 0 }
main{
margin: 0 auto;
padding: 0;
max-width: 1024px;
}
@media screen and (min-width:1024px) {
main {
display: grid;
grid-template-columns: 512px 512px;
grid-template-rows: 130px auto 500px 100px;
grid-template-areas: "headerArea headerArea"
"outputArea codeArea"
"helpArea helpArea"
"footerArea footerArea";
}
header { grid-area: headerArea; }
#output_pane { grid-area: outputArea;}
#code_pane { grid-area: codeArea;}
footer { grid-area: footerArea; }
iframe { grid-area: helpArea;}
}
#code_pane{
background: #93B9FF;
border-style: solid;
border-color: #93B9FF;
}
#code_pane textarea {
margin: 5px;
width: 500px;
height: 500px;
}
#output_pane{
background: #5370C0;
border-style: solid;
border-color: #5370C0;
position: relative;
}
#textOutput {
}
#canvas {
margin: 5px;
}
#turtle {
margin: 10px 0 10px 0;
height: 20px;
width: 20px;
position: absolute;
font-size: 20px;
background-color: transparent;
}
iframe {
width: 100%;
height: 500px;
}
footer{
background: black;
color: white;
text-align: center;
padding: 4px 0;
border-style: solid;
border-color: black;
}
footer a{
color: #FFFF80;
}