This commit is contained in:
2025-05-20 13:48:39 +03:00
parent a1055b0c43
commit 82b25946a0
6 changed files with 69 additions and 17 deletions

View File

@ -1,6 +1,7 @@
/* src: */
.currentpage, .pagebutton, button.critical, input[type=submit].critical, .linkbutton.critical, button, input[type=submit], .linkbutton {
.currentpage, .pagebutton, input[type=file]::file-selector-button, button.warn, input[type=submit].warn, .linkbutton.warn, button.critical, input[type=submit].critical, .linkbutton.critical, button, input[type=submit], .linkbutton {
cursor: default;
color: black;
font-size: 0.9rem;
text-decoration: none;
border: 1px solid black;
@ -20,6 +21,8 @@ body {
display: flex;
justify-content: end;
background-color: #c1ceb1;
justify-content: space-between;
align-items: center;
}
#bottomnav {
@ -35,6 +38,11 @@ body {
background-color: rgb(143.7039271654, 144.3879625984, 142.8620374016);
}
.site-title {
display: inline;
padding-right: 30px;
}
.thread-title {
margin: 0;
}
@ -119,6 +127,25 @@ button.critical:hover, input[type=submit].critical:hover, .linkbutton.critical:h
button.critical:active, input[type=submit].critical:active, .linkbutton.critical:active {
background-color: rgb(149.175, 80.325, 80.325);
}
button.warn, input[type=submit].warn, .linkbutton.warn {
background-color: #fbfb8d;
}
button.warn:hover, input[type=submit].warn:hover, .linkbutton.warn:hover {
background-color: rgb(251.8, 251.8, 163.8);
}
button.warn:active, input[type=submit].warn:active, .linkbutton.warn:active {
background-color: rgb(198.3813559322, 198.3813559322, 154.4186440678);
}
input[type=file]::file-selector-button {
background-color: rgb(177, 206, 204.5);
}
input[type=file]::file-selector-button:hover {
background-color: rgb(192.6, 215.8, 214.6);
}
input[type=file]::file-selector-button:active {
background-color: rgb(166.6881496063, 178.0118503937, 177.4261417323);
}
.pagebutton {
background-color: rgb(177, 206, 204.5);
@ -143,3 +170,7 @@ button.critical:active, input[type=submit].critical:active, .linkbutton.critical
min-width: 20px;
text-align: center;
}
.modform {
display: inline;
}