-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
87 lines (73 loc) · 1.18 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
body {
margin: 0;
background-color: #e7ad18;
font-family: sans-serif;
font-size: 1em;
}
h1 {
font-size: 1.5em;
margin: 0;
}
p {
margin-top: 0.75em;
margin-bottom: 0;
}
p:first-child {
margin-top: 0;
}
a:link, a:visited {
color: #0000ee;
}
header {
background-color: #2d3142;
color: #fff;
display: flex;
flex-direction: row;
align-content: center;
justify-content: center;
padding: 10px 0;
}
header img {
height: 120px;
}
header p {
font-family: Inconsolata, monospace;
font-size: 72px;
line-height: 120px;
margin: 0;
}
main {
width: 70%;
margin: 20px 15%;
display: grid;
grid-gap: 20px;
}
.box {
background-color: #eee;
border: 1px solid #000;
border-radius: 10px;
padding: 20px;
}
.io {
display: grid;
grid: auto-flow / 1fr 1fr;
grid-gap: 20px;
}
.in, .out {
min-height: 240px;
}
.url {
font-family: Inconsolata, monospace;
width: 100%;
box-sizing: border-box;
}
.file {
font-family: Inconsolata, monospace;
}
.log {
font-family: Inconsolata, monospace;
list-style: none;
margin-top: 10px;
margin-bottom: 0;
padding: 0;
}