-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (66 loc) · 1.11 KB
/
style.css
File metadata and controls
74 lines (66 loc) · 1.11 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
*{
margin: 0;
padding: 0;
}
body{
background-color: #0f172a;
}
.contaner{
margin-top: 2vh;
display: flex;
justify-content: space-between;
}
a{
text-decoration: none;
color: #ffff;
}
h2{
color: #ffff;
font-size: medium;
padding: 5px 10px;
background-color: #16a34a;
}
#html-head{
background-color: #ea580c;
}
#css-head{
background-color: #0284c7;
}
#js-head{
background-color: #eab308;
}
.left{
margin-left: 1vw;
}
.right{
margin-right: 1vw;
}
textarea{
width: 47vw;
min-height: 25vh;
overflow: auto;
font-size: large;
background-color: #1e293b;
border: 2px solid #6b7280;
padding: 5px 0 0 15px;
color: #cbd5e1;
}
iframe{
width: 47vw;
height: 87vh;
overflow: auto;
font-size: large;
background-color: #ffff;
border: 2px solid #6b7280;
padding: 5px 0 0 15px;
}
footer{
text-align: center;
color: #ffff;
width: 100%;
margin-top: 5px;
}
/* -----------scroll bar ------------------- */
::-webkit-scrollbar{
width: 0;
}