-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
162 lines (138 loc) · 2.65 KB
/
style.css
File metadata and controls
162 lines (138 loc) · 2.65 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
body {
font-family: sans-serif;
padding: 0;
background-color: #131417;
width: 100%;
height: 100vh;
}
#header {
width: 100%;
background-color: #28282a;
padding: 5px;
height: 60px;
position: relative;
}
#logo {
float: left;
font-weight: bold;
font-size: 120%;
padding: 3px 5px;
color: white;
}
#logoImg {
width: 68%;
height: 68%;
}
/* ✅ FLEXBOX FIX for Proper Alignment */
#buttonContainer {
display: flex;
align-items: center;
justify-content: space-between; /* ✅ pushes download to right */
width: 85%;
margin: 0;
position: relative;
/* top: 10px; */
}
/* ✅ Group for left buttons (HTML, CSS, JS, Output, Reset) */
#leftButtons {
display: flex;
gap: 10px;
align-items: center;
}
#downloads{
margin-left: 100;
display: flex;
align-items:center;
}
.toggleButton {
border: none;
padding: 13px;
font-size: 105%;
cursor: pointer;
background-color: #424242;
color: white;
}
#html {
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
#output {
border-right: 1px solid grey;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
.active {
background-color: #212121;
color: white;
border-top: 2px rgb(255, 255, 136) solid;
border-bottom: 2px rgb(255, 255, 136) solid;
}
.highlightedButton {
background-color: grey;
}
/* ✅ Download Icon Fixed */
#imgdwn {
width: 32px;
height: 32px;
cursor: pointer;
transition: border 0.2s ease;
}
#imgdwn:hover {
border: 2px rgb(255, 255, 136) solid;
border-radius: 8px;
}
textarea {
resize: none;
border-top: none;
border-color: grey;
}
#htmlPanel,
#cssPanel,
#javascriptPanel {
background-color: #131417;
color: white;
font-size: 15px;
margin-top: 15px;
}
.panel {
float: left;
width: 50%;
border-width: 2px;
border-left: none;
border-color: white;
}
iframe {
border: none;
}
.hidden {
display: none;
}
/* ✅ Reset Button Style */
#reset {
background-color: #424242;
color: white;
font-size: 105%;
padding: 10px 15px;
border-radius: 4px;
cursor: pointer;
transition: background 0.2s ease, border 0.2s ease;
}
#reset:hover {
background-color: grey;
border: 2px solid rgb(255, 255, 136);
}
/* //boiler plate */
#insertBoilerplate {
background-color: #424242;
color: white;
font-size: 105%;
padding: 10px 15px;
border-radius: 4px;
cursor: pointer;
transition: background 0.2s ease, border 0.2s ease;
margin-left: 10px;
}
#insertBoilerplate:hover {
background-color: grey;
border: 2px solid rgb(255, 255, 136);
}