-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (49 loc) · 1003 Bytes
/
style.css
File metadata and controls
57 lines (49 loc) · 1003 Bytes
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
body {
min-height: 100vh;
background: linear-gradient(150deg, #de7aff, #62a9b9);
display: flex;
flex-flow: column wrap;
justify-content: center;
align-items: center;
font-family: "Open Sans", sans-serif;
}
body h1, body h2 {
color: #1a1930;
margin: 0.3rem;
}
h1{
font-size: 3em;
}
.editor {
margin-top: 2rem;
display: flex;
flex-flow: row wrap;
min-width: 60vw;
min-height: 500px;
max-height: 700px;
background: grey;
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}
.editor .gutter {
background: #11101f;
color: grey;
display: flex;
flex-flow: column wrap;
padding: 1rem;
}
.editor .gutter span {
padding: 0.5rem;
color: #62a9b9;
}
.editor textarea {
background: #1a1930;
flex: 1;
border: 0;
color: white;
padding: 1rem;
line-height: 2.2;
overflow: hidden;
}
.editor textarea:focus {
outline: none;
}