-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyles.css
More file actions
122 lines (104 loc) · 1.93 KB
/
styles.css
File metadata and controls
122 lines (104 loc) · 1.93 KB
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
113
114
115
116
117
118
119
120
121
122
*{
user-select: none;
}
body {
font-family: sans-serif;
margin: 0;
}
#header {
width: 100%;
display: flex;
flex-direction: row;
background-color: #B6EAEE;
/* background-color:black; */
}
#logo {
/* padding-right: 50px; */
font-weight: bold;
font-size: 150%;
margin: auto 5px;
color: #227C7B;
-webkit-text-stroke: black 0.5px;
}
#runBtn {
border-radius: 7px;
padding: 5px 10px;
height: fit-content;
width: fit-content;
margin: auto;
cursor: pointer;
outline: none;
border: none;
border: white 1px solid;
color: #227C7B;
}
#runBtn:hover {
background: #B6EAEE;
}
#runBtn:active {
background: #2e3440;
}
#btnContainer {
display: flex;
flex-direction: row;
background-color: #B6EAEE;
/* justify-content: center; */
padding: 10px;
}
.toggle-btn {
border: white 1px solid;
color: #227C7B;
padding: 5px;
cursor: pointer;
font-size: 15px;
}
.toggle-btn:hover {
background-color: #464646;
}
#html {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
#output {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
.active {
background-color: #2e3440;
}
#bodyContainer {
display: flex;
flex-direction: row;
height: 500px;
}
.panel {
display: none;
}
#htmlTA,#cssTA,#jsTA {
height: calc(100vh - 51px);
width: 100vw;
resize: none;
border: none;
border-right: 1px solid #227C7B;
display: block;
transition: ease-in-out .3s;
}
iframe {
height: calc(100vh - 51px);
width: 100vh;
border: none;
}
hr {
background-color: #227C7B;
}
.theme-toggle {
margin: auto 0;
cursor: pointer;
margin-right: 15px;
color: #2e3440;
}
@media (max-width: 768px) {
#logo {
font-size:17px;
}
}