1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
my-old-website/MyWebsite/MyWebsite/wwwroot/css/Admin.css
T
Michael Gordeev e15bbce9ad Cleanup 2
2019-12-14 17:59:33 +03:00

110 lines
1.6 KiB
CSS

input {
padding: 10px;
border-radius: 10px;
border: 1px solid black;
width: 100%;
box-sizing: border-box;
margin-bottom: 10px;
}
select {
padding: 10px;
border: 1px solid black;
border-radius: 10px;
width: 100%;
-moz-appearance: none; /* Firefox */
-webkit-appearance: none; /* Safari and Chrome */
}
button {
margin: 10px;
border-radius: 10px;
border: 0px;
padding: 10px 20px;
background-color: #343434;
color: white;
}
textarea {
resize: none;
width: 100%;
border-radius: 10px;
border: 1px solid black;
padding: 10px;
box-sizing: border-box;
height: 200px;
font-family: Consolas;
}
.select-container::after {
content: '>';
transform: rotate(90deg);
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
right: 11px;
top: 11px;
position: absolute;
pointer-events: none;
}
.select-container {
position: relative;
}
form {
max-width: 50%;
}
.admin-menu a {
font-size: 16pt;
}
.logout, .logout:link, .logout:link:visited {
font-size: 16pt;
color: red !important;
}
.validation-summary-errors {
color: red;
}
th {
text-align: left;
}
table {
width: 100%;
}
.form-group input {
width: auto;
}
.text-danger {
text-decoration: solid;
color: red;
}
.btn {
background-color: #343434;
color: white;
}
.btn-danger {
background-color: red;
color: white;
}
.checkbox {
width: auto;
}
.readonly {
background-color: lightgray;
}
@media only screen and (max-width: 700px) {
form {
max-width: initial;
}
}