-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
71 lines (60 loc) · 1.29 KB
/
styles.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
body{
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
padding:0px;
margin:0px;
}
#header{
width:100%;
background-color: dimgrey;
padding:5px;
height:40px;
}
#buttonContainer{
margin:0 auto;
width:250px;
}
#logo{
float:left;
font-weight: bold;
font-size:150%;
padding:5px 5px;
}
.toggle-button{
float:left;
border:2px solid rgb(196, 192, 182);
padding:10px;
border-right: none;
font-size :95%;
}
#html{
border-top-left-radius: 5px;
border-bottom-left-radius:5px;
}
#output{
border-top-right-radius: 5px;
border-bottom-right-radius:5px;
border-right:2px solid rgb(196, 192, 182);
}
.active{
background-color: rgb(184, 233, 233);
}
.highlight{
background-color: rgb(196, 192, 182);
}
textarea{
resize:none;
border-top: none;
border-color: black;
border-bottom: none;
}
.panel{
float:left;
width:50%;
border-left: none;
}
iframe{
border:none;
}
.hidden{
display:none;
}