-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (128 loc) · 2.71 KB
/
style.css
File metadata and controls
128 lines (128 loc) · 2.71 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
123
124
125
126
127
128
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
width: 100%;
height: 100vh;
}
.code-editor-container{
width: 100%;
height: 70%;
background-color:rgb(24, 36, 51);
display: flex;
align-items: center;
justify-content: space-evenly;
flex-wrap: wrap;
gap: 20px;
padding: 20px;
overflow: auto;
}
.code-editor{
width: 450px;
height: 450px;
box-shadow: 0 2px 10px rgba(0, 150, 136, 0.3);
border: 2px solid purple;
border-radius: 20px;
overflow: auto;
}
.head-editor{
width: 100%;
height: 60px;
background-color: #fffde7;
box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
padding: 20px;
display: flex;
align-items: center;
justify-content: space-between;
}
.left-part{
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.left-part span{
color: black;
font-size: 20px;
}
.right-part img{
cursor: pointer;
transition: all 0.5s;
}
.right-part img:hover{
transform: scale(1.3);
}
.code-area{
width: 100%;
height: calc(100% - 80px);
background-color: rgb(24, 36, 51);
border: none;
outline: none;
font-size: 20px;
color: rgb(185, 199, 210);
padding: 20px;
resize: none;
}
.output-container{
width: 100%;
height: 30%;
box-shadow: 2px -4px 10px purple;
color: rgb(185, 199, 210);
font-size: 20px;
transition: all 0.5s;
}
.output-head{
width: 100%;
height: 60px;
background-color: rgb(17, 17, 46);
display: flex;
align-items: center;
justify-content: right;
padding: 30px;
gap: 20px;
}
.output-head span{
color: aliceblue;
font-size: 18px;
}
.output-head img{
cursor: pointer;
transition: all 0.5s;
}
.output-head img:hover{
transform: scale(1.3);
}
#output{
width: 100%;
height: calc(100% - 60px);
overflow: auto;
background-color: white;
}
.output-full-screen{
height: 100vh;
background-color: white;
width: 100%;
position: fixed;
top: 0;
left: 0;
}
/*
overflow: hidden hides any overflowing content without scrollbars.
overflow: auto shows scrollbars only when content overflows.
*/
#html-section::selection{
background-color: rgba(255, 166, 0, 0.784);
}
#css-section::selection{
background-color: rgba(0, 132, 255, 0.922);
}
#js-section::selection{
background-color: rgb(251, 255, 0);
color: black;
}
.html-section { background-color:rgb(242, 214, 163); }
.css-section { background-color: lightblue;}
.js-section { background-color: #faf5b7;}