-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
67 lines (60 loc) · 1 KB
/
styles.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
:root {
--base00: #20201d;
--base01: #292824;
--base02: #6e6b5e;
--base03: #7d7a68;
--base04: #999580;
--base05: #a6a28c;
--base06: #e8e4cf;
--base07: #fefbec;
--base08: #d73737;
--base09: #b65611;
--base0A: #ae9513;
--base0B: #60ac39;
--base0C: #1fad83;
--base0D: #6684e1;
--base0E: #b854d4;
--base0F: #d43552;
}
body {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
header {
height: 40px;
background: #434343;
display: flex;
align-items: center;
justify-content: center;
}
header h2 {
color: #fbfbfb;
}
.codebox-container {
margin: auto;
max-width: 1000px;
width: 100%;
display: flex;
height: calc(100vh - 40px);
align-items: center;
}
.codebox {
background: var(--base00);
color: var(--base03);
padding: 10px;
outline: none;
height: 600px;
border: none;
resize: none;
width: 100%;
margin-right: 10px;
border-radius: 5px;
}
.codebox.hightlighted {
--base00: red;
}
.codebox:last-child {
margin-right: 0;
}