-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (90 loc) · 1.61 KB
/
style.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
html,body { height: 100%; width: 100%; margin: 0; padding: 0; }
#topbar{
width: 100%;
height: 50px;
display: inline-block;
background-color:teal;
position: -webkit-sticky;
position: sticky;
}
#logo{
font-size: 32px;
font-weight: bold;
padding: 8px;
width: 500px;
float: left;
color: white;
}
#buttoncontainer{
padding: 5px;
float: left;
align-items: center;
margin: 5px 129px;
width: 226px;
}
.togglebutton{
float: left;
border: 2px solid black;
border-right: none;
padding: 4px;
background-color: rgb(222, 135, 150);
color: white;
}
.togglebutton:hover{
background-color:rgb(140, 140, 180);
cursor: pointer;
}
#html{
border-top-left-radius: 6px ;
border-bottom-left-radius: 6px;
}
#output{
border: 2px solid black;
border-top-right-radius: 6px ;
border-bottom-right-radius: 6px;
}
.active{
background-color: rgb(138, 138, 218);
}
#bodycontainer{
display: block;
padding: 0 10px;
height: 90%;
}
textarea{
resize: horizontal;
float: left;
height: 100%;
background-color: blanchedalmond;
}
.panel{
float:left;
height: 100%;
}
.hidden{
display: none;
}
#helpsection{
margin: 10px auto;
width: 40%;
background-color: antiquewhite;
padding: 10px;
border-radius: 8px;
}
#helpbutton{
float: right;
margin:5px 5px ;
font-size: 30px;
font-weight: bold;
border-radius: 25px;
width: 40px;
height: 40px;
background-color: rgb(93, 93, 255);
color: white;
}
#helpbutton:hover{
cursor: pointer;
}
#outputpanel{
resize: horizontal;
}