-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
112 lines (93 loc) · 1.64 KB
/
index.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&display=swap');
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
font-family: 'Inconsolata', monospace;
background-color:#272822;
}
body textarea {
resize: none;
width: 100%;
height: 100%;
}
button {
background-color:#272822;
display:inline-block;
cursor:pointer;
color:#f92673;
font-family:Arial;
padding:7px 31px;
text-decoration:none;
border-style: solid solid none none;
}
button:hover {
background-color:#414239;
}
button:active {
position:relative;
top:1px;
}
.parent {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 40px 1fr 1fr 20px;
grid-column-gap: 0px;
grid-row-gap: 0px;
height: 100vh;
width: 100vw;
}
.parent>div {
border: 1px solid black;
}
.section {
display: flex;
flex-direction: column;
}
.section>p {
color: black;
background-color: white;
padding-left: 3px;
}
.editor {
flex-grow: 1;
}
.header {
grid-area: 1 / 1 / 2 / 3;
display: flex;
justify-content: center;
align-items: center;
font-size: 25px;
background-color: #272822;
color: #f92672;
font-weight: bold;
}
.topleft {
grid-area: 2 / 1 / 3 / 2;
}
.right {
grid-area: 2 / 2 / 4 / 3;
}
.bottomleft {
grid-area: 3 / 1 / 4 / 2;
}
.footer {
grid-area: 4 / 1 / 5 / 3;
background-color: #272822;
color: #f92672;
font-size: 10px;
padding-left: 10px;
display: flex;
align-items: center;
}
.footer>p {
margin-right: 20px;
}
.footer>p>a {
color: inherit;
}
.ldld {
z-index: 999999;
}