uploader/assets/style.css

90 lines
1.1 KiB
CSS
Raw Normal View History

* {
font-family: arial;
}
#but {
background-color: #eee;
border: 2px black solid;
}
2024-05-01 08:42:54 +02:00
.centered {
text-align: center;
}
2024-05-01 08:42:54 +02:00
img {
text-align: center;
border: 2px solid #ff6e00;
border-radius: 50%;
padding: 1%;
}
button {
background-color: #eee;
border: 2px black solid;
}
#but:hover {
background-color: #ff6e00;
border: 2px black solid;
}
body {
background-color: #aaa;
}
h1 {
text-align: center;
bottom: 0%;
}
h3 {
text-align: center;
}
form {
text-align: center;
}
a {
color: #ff6e00;
2024-05-01 08:42:54 +02:00
text-decoration: none;
}
2024-05-01 08:42:54 +02:00
a:hover {
text-decoration: underline;
}
2024-05-02 07:58:52 +02:00
progress::-moz-progress-bar {
background-color: #ff6e00;
}
progress::-webkit-progress-value {
background-color: #ff6e00;
}
progress {
color: #ff6e00;
}
2024-05-01 08:42:54 +02:00
footer {
top: 100%;
}
#main {
background-color: #eee;
bottom: 100%;
height: 100%;
padding-left: 5%;
padding-right: 5%;
2024-05-01 08:42:54 +02:00
outline: solid 2px #ff6e00;
}
.container {
display: flex;
/* outline: solid 1px black; */
justify-content: center;
height: 100%;
max-width: 100%;
background-color: #aaa;
}