csgen/index.css

281 lines
4 KiB
CSS
Raw Normal View History

2024-01-02 03:55:23 +01:00
@font-face {
font-family: 'Noto Sans';
src: URL('font.ttf') format('truetype');
}
.barTitle {
font-size: 15pt;
font-family: Noto Sans;
font-weight: normal;
position: sticky;
top: 0px;
z-index: 6;
background-color: #363636;
margin: 10px;
padding: 5px;
width: auto;
float: left;
border-radius: 10px;
}
.barTitle p {
padding: 0px;
margin: 0px;
}
.barMenu {
font-size: 15pt;
font-family: Noto Sans;
font-weight: normal;
position: sticky;
top: 0px;
z-index: 6;
background-color: #363636;
margin: 10px;
padding: 0px;
width: auto;
float: right;
border-radius: 10px;
}
.barTitle a {
padding-left: 10px;
padding-right: 10px;
}
input, select, textarea {
font-size: 12pt;
font-family: Noto Sans;
font-weight: normal;
padding: 7px;
border-color: #363636;
border-width: 0px;
background-color: #363636;
color: #f0eee4;
border-radius: 10px;
}
input[type=file] {
background-color: #262626;
color: #646464;
padding: 5px;
}
input[type=file]::file-selector-button {
font-size: 12pt;
font-family: Noto Sans;
font-weight: normal;
width: 50%;
padding: 5px;
border-color: #363636;
border-width: 0px;
background-color: #262626;
color: #f0eee4;
}
#web {
padding: 10px;
}
.actionmenu {
background-color: #3e3e3e;
padding: 11px;
color: white;
border: none;
cursor: pointer;
border-radius: 10px;
}
.actionmenu:hover, .actionmenu:focus {
background-color: #646464;
}
.dropdown {
position: relative;
display: block;
}
.dropdown-content {
margin-left: -125px;
border-radius: 10px;
display: none;
position: absolute;
background-color: #464646;
font-size: 10pt;
min-width: 160px;
overflow: auto;
z-index: 1;
margin-top: 10px;
}
.dropdown-content p {
padding: 0px;
margin: 0px;
}
.dropdown-content a {
color: #f0eee4;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.commentAuthor {
color: #00ff51;
}
.commentAuthorMod {
color: #ffc0cb;
}
.dropdown-content a:hover {
background-color: #262626;
}
.show {display: block;}
#title {
color: #f0eee4;
}
#administration {
color: #ffc0cb;
}
#edit {
color: #42a7f5;
}
.title {
color: #f0eee4;
padding-left: 2px;
}
.links {
color: #66667d;
padding: 5px;
padding-left: 2px;
}
.error, .adminError, .userError, .pageError {
color: #ff0000;
}
.content {
font-size: 12pt;
font-family: Noto Sans;
font-weight: normal;
color: #f0eee4;
padding: 5px;
max-width: 1000px;
margin: auto;
text-align: center;
padding-bottom: 100px;
}
2024-01-03 23:21:08 +01:00
.content ul {
padding-left: 0;
list-style-position: inside;
2024-01-02 05:07:16 +01:00
}
.content table {
margin-left: auto;
margin-right: auto;
text-align: left;
}
.content th, td {
padding-right: 25px;
}
2024-01-02 03:55:23 +01:00
.comment {
margin: 5px;
2024-01-03 11:20:47 +01:00
padding: 10px;
padding-top: 1px;
padding-bottom: 1px;
text-align: left;
2024-01-02 03:55:23 +01:00
background-color: #262626;
border-radius: 10px;
2024-01-03 11:20:47 +01:00
}
#commentRemove {
color: #eb345b;
2024-01-02 03:55:23 +01:00
}
.content table {
width: 100%;
}
.adminLinks, .pageLinks {
width: 100%;
margin: 0px;
padding: 5px;
padding-left: 10px;
padding-right: 10px;
background-color: #363636;
border-radius: 10px;
}
.allLinks {
margin: 0px;
padding: 5px;
padding-left: 10px;
padding-right: 10px;
background-color: #363636;
border-radius: 10px;
}
.adminCreateForm {
padding: 10px;
}
.warning, .pageWarning, .adminWarning {
color: #ffff00;
}
#sel {
text-decoration: underline;
color: #f0eee4;
}
a {
color: #89bfff;
text-decoration: none;
transition: 0.1s;
}
a:hover {
color: #ccccff;
text-decoration: underline;
}
body {
margin: 0px;
padding: 0px;
background-color: #212121;
overflow-x: hidden;
}
footer {
font-size: 12pt;
font-family: Noto Sans;
font-weight: normal;
padding: 5px;
color: #f0eee4;
background-color: #363636;
text-align: center;
position: fixed;
bottom: 0px;
width: 100%;
}