Spaces:
Sleeping
Sleeping
File size: 3,962 Bytes
0135475 |
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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
/* * Reset all elements */
* {
margin: 0;
padding: 0;
}
/* * HTML elements */
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 18px;
font-weight: normal;
line-height: 1.5em;
}
/* * Local selectors */
#container {
width: 100%;
height: 586px;
border: 8px #2c374a solid;
background-color: #0F172A;
border-radius: 5px;
}
#videoElement {
height: 570px;
width: 100%;
background-color: #0F172A;
display: block;
margin-left: auto;
margin-right: auto;
}
#terminal {
border-radius: 5px;
border: 5px #1C2637 solid;
font-family: monospace;
font-size: 12px;
background-color: #0F172A;
height: 490px;
overflow-y: scroll;
}
#control {
margin-top: 40px;
}
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
.switch input {
display: none;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #1C2637;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: #0275d8;
transition: .4s;
}
input:checked + .slider {
background-color: #03DD6F;
}
input:focus + .slider {
box-shadow: 0 0 1px #000000;
}
input:checked + .slider:before {
transform: translateX(26px);
background-color: #1C2637;
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
.container1 {
position: relative;
z-index: 0;
}
.overlay1 {
font-size: 13px;
position: absolute;
bottom: 0;
right: 80px;
z-index: 1;
background-color: rgba(255, 255, 255, 0.9);
}
.overlay2 {
font-size: 13px;
position: absolute;
bottom: 25px;
right: 80px;
z-index: 1;
background-color: rgba(255, 255, 255, 0.9);
}
.overlay3 {
font-size: 13px;
position: absolute;
bottom: 50px;
right: 80px;
z-index: 1;
background-color: rgba(255, 255, 255, 0.9);
}
.no-link {
color: inherit;
text-decoration: none;
}
button.frame {
background: none !important;
border: none;
padding: 0 !important;
/*optional*/
font-family: arial, sans-serif;
/*input has OS specific font-family*/
color: darkred;
cursor: pointer;
}
@keyframes jumbo {
from {
background-position: 50% 50%, 50% 50%;
}
to {
background-position: 350% 50%, 350% 50%;
}
}
.jumbo {
--stripes: repeating-linear-gradient(
100deg,
#0f172a 0%,
#0f172a 7%,
transparent 10%,
transparent 12%,
#0f172a 16%
);
--stripesDark: repeating-linear-gradient(
100deg,
#0f172a 0%,
#0f172a 7%,
transparent 10%,
transparent 12%,
#0f172a 16%
);
--rainbow: repeating-linear-gradient(
100deg,
#60a5fa 10%,
#e879f9 15%,
#60a5fa 20%,
#5eead4 25%,
#60a5fa 30%
);
background-image: var(--stripesDark), var(--rainbow);
background-size: 300%, 200%;
background-position: 50% 50%, 50% 50%;
filter: blur(10px) opacity(50%) saturate(200%);
mask-image: radial-gradient(ellipse at 100% 0%, black 40%, transparent 70%);
pointer-events: none;
}
.jumbo::after {
content: "";
position: absolute;
inset: 0;
background-image: var(--stripes), var(--rainbow);
background-size: 200%, 100%;
animation: jumbo 60s linear infinite;
background-attachment: fixed;
mix-blend-mode: difference;
}
.dark .jumbo {
background-image: var(--stripesDark), var(--rainbow);
filter: blur(10px) opacity(50%) saturate(200%);
}
.dark .jumbo::after {
background-image: var(--stripesDark), var(--rainbow);
}
|