-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
81 lines (73 loc) · 1.17 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
body {
margin: 0;
height: 100%;
font-size: 13px;
}
.titlebar {
position: fixed;
background: #222;
width: 100%;
height: 22px;
}
.title {
height: 100%;
width: 100%;
display: flex;
text-align: center;
-webkit-app-region: drag;
}
.title p {
margin: auto;
position: relative;
right: 22px;
font-size: 17px;
font-family: monospace;
font-weight: bold;
color: #ff477b;
display: flex;
justify-content: center;
align-items: center;
}
.controls {
margin-right: 13px;
position: relative;
bottom: 22px;
width: 69px;
height: 100%;
float: right;
display: flex;
}
.controls i {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
color: #ff477b;
display: flex;
justify-content: center;
align-items: center;
-webkit-app-region: no-drag;
}
.wrap {
padding-top: 22px;
}
textarea, #editor div {
padding: 0 22px;
width: 47%;
height: 100%;
display: inline-block;
box-sizing: border-box;
vertical-align: top;
}
textarea {
padding: 22px;
background: #222;
border: none;
border-right: 1px solid #ccc;
font-size: 13px;
font-family: monospace;
font-weight: bold;
color: #ff477b;
resize: none;
outline: none;
}