-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
128 lines (108 loc) · 1.91 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
body {
font-family: "Open Sans";
margin: 0;
}
.stripe {
width: 80%;
display: block;
margin: 20px 10% 20px 10%;
}
.header {
height: 50px;
display:flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
align-content: stretch;
align-items: flex-end;
}
.banner {
height: 400px;
background-color: #fff4cb;
display:flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: center;
align-content: center;
align-items: center;
}
.yellow {
background-color: #fff4cb;
}
.content {
padding: 0px 20px 0px 20px;
}
.logo {
padding: 10px;
width: 300px;
}
.synopsis {
width: 350px;
text-align: center;
font-size: 16px;
}
.crest {
height: 50px;
margin-right: 50px;
}
nav a {
margin: 20px;
text-decoration: none;
color: black;
}
code {
display: block;
margin: 20px;
background-color: #fff4cb;
padding: 10px;
font-weight: bold;
}
.code-panel {
display:flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
align-content: stretch;
align-items: stretch;
min-height: 200px;
}
#examples-react {
margin-top: 20px;
margin-right: 10%;
margin-bottom: 20px;
margin-left: 10%;
background-color: #fff4cb;
padding: 30px;
}
.code-panel>div {
flex-grow: 1;
flex-shrink: 0;
width: 45%;
height: auto;
}
.console {
background-color: #202020;
padding: 20px;
color: white;
overflow: auto;
}
.stderr {
color: #FF6B68;
}
.ideButton {
background-color: #202020;
border: none;
padding: 10px;
margin: 0px 20px 20px 0px;
color: white;
cursor: pointer;
font-size: 12px;
}
.exampleDropdown {
margin-left: 10px;
}
.code-input {
font-family: monospace !important;
font-size: 15px !important;
}