-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (64 loc) · 1.04 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
body {
color: #222222;
font-family: Arial, San-serif;
}
header {
font-size: 0.83rem;
}
header h1 {
font-size: 1.2rem;
color: #AA00AA;
}
main {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
column-gap: 5em;
margin-bottom: 1ex;
background: #FFEEFF;
padding: 1em;
}
footer {
font-size: 0.83rem;
}
section {
}
label {
display: block;
margin: 1ex 0 0 0;
}
label span {
font-style: italic;
font-size: 0.83rem;
color: #555530;
}
label input {
background: #FFFFEE;
font-family: Courier, Monospace;
font-size: 1rem;
}
label input {
display: block;
width: 100%;
}
form button {
/* background: lightgreen; */
margin-top: 1ex;
float: right;
}
iframe {
width: 100%;
height: 500px;
border: 1px solid #330033;
margin-top: 1ex;
}
#bite {
display: none;
}
#bite-editor {
/* width: 100%; */
height: 450px;
border: 1px solid;
font-family: Courier, Monospace;
font-size: 1rem;
background: #FFFFEE;
}