tools/autist/style.css
zyqunix 3cf2363147 1. changed to a global css instead of using the same shit over and over.
2. deleted soem unused stuff
3. stole some windows' api virtual keys site keys
2025-01-17 23:14:57 +01:00

112 lines
1.7 KiB
CSS

@import url(/global.css);
.top {
top: 0;
left: 0;
}
marquee {
position: relative;
font-size: 16px;
padding: 10px 0;
background-color: #454545;
color: #fff;
width: 100%;
}
button:not(#toggle) {
color: white;
background-color: #b49cdf;
border: 2px solid #9f8ac7;
border-radius: 3px;
cursor: pointer;
transition: 0.1s ease-in-out;
padding: 10px 20px;
margin: 10px;
}
#toggle {
left: 10px;
bottom: 10px;
position: absolute;
cursor: pointer;
padding: 5px;
color: #c0c0c0;
background-color: #454545;
border: 2px solid #404040;
border: none;
}
#toggle:hover {
color: #b49cdf;
background-color: #404040;
}
button:hover:not(#toggle) {
background-color: #9f8ac7;
border-color: #947fb9;
}
.main {
max-width: 80%;
text-align: center;
padding: 30px;
background-color: #454545;
border-radius: 4px;
box-shadow: 0 4px 10px rgba(16, 16, 16, 0.5);
transform: scale(1.1);
}
@media (min-width: 1024px) {
.main {
max-width: 50%;
padding: 40px;
transform: scale(1.2);
}
button {
padding: 12px 30px;
}
marquee {
position: absolute;
top: 0;
}
}
@media (min-width: 768px) and (max-width: 1023px) {
.main {
max-width: 70%;
padding: 35px;
}
button {
padding: 10px 20px;
}
marquee {
position: absolute;
top: 0;
}
}
@media (max-width: 767px) {
.main {
max-width: 100%;
padding: 20px;
transform: scale(1);
}
marquee {
font-size: 14px;
position: absolute;
top: 0;
}
button {
padding: 8px 16px;
font-size: 14px;
}
}