-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (50 loc) · 887 Bytes
/
style.css
File metadata and controls
52 lines (50 loc) · 887 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
*{
margin:0px;
padding:0px;
box-sizing: border-box;
}
.container{
height:100vh;
width:100%;
display:flex;
justify-content: center;
align-items:center;
padding:20px;
background-color: black;
color:white;
}
.left{
height:100vh;
width:50%;
display:flex;
justify-content: center;
align-items:center;
flex-direction:column;
}
#html-code,#css-code,#js-code{
height:30%;
width:60%;
background-color: rgb(77, 69, 69);
color:white;
}
.right{
height:100vh;
width:50%;
border:2px solid black;
padding:20px;
display:flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
label{
color:white;
display:flex;
align-items:center;
justify-content: flex-end;
}
#output{
height:90vh;
width:80%;
background-color: white;;
}