forked from ACM-Thapar/Markdown-Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyling.css
66 lines (58 loc) · 1.12 KB
/
styling.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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
*{
margin:0;
padding: 0 px;
box-sizing: border-box;
}
body{
background-color: #333642;
}
.container{
height: 100vh;
width: 100vw;
display: grid;
grid-template-rows: 1fr 1fr;
grid-gap: 10px;
}
.input-code{
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 20px;
padding: 0 10px 10px 10px;
}
.code-editor{
height: 90%;
width: 100%;
bottom: 0px;
}
.code-type{
color: whitesmoke;
font-family: 'Roboto' , sans-serif;
height: fit-content;
width: 100%;
background-color: #1A1B1F;
padding: 10px;
/* bottom: 0px; */
border-bottom: 1px solid #333642 ;
}
.code{
background-color: #1D1E22;
color: white;
width: 100%;
height: 100%;
}
.output-code{
background-color: #e3e6f0;
/* display: flex; */
position: absolute;
left: 505px;
top: 0px;
right: 0px;
bottom: 0px;
height: 1000px;
width: 100%;
}
.output-iframe{
height: inherit;
width: inherit;
}