marinesco/src/main/resources/static/styles/styles.css

237 lines
3.1 KiB
CSS
Raw Normal View History

2023-12-29 21:55:47 +03:00
@font-face {
2023-12-30 15:01:41 +03:00
font-family: "Spectral";
src: url('/styles/SpectralSC-Medium.ttf');
}
@font-face {
font-family: "Arimo";
src: url('/styles/Arimo-VariableFont_wght.ttf');
2023-10-05 02:55:39 +03:00
}
2024-01-10 20:08:05 +03:00
html{
line-height: 1.5;
}
2023-12-29 21:55:47 +03:00
body {
2023-12-30 15:01:41 +03:00
font-family: Arimo;
2023-10-05 02:55:39 +03:00
background-color: #212121;
color: #cfcfcf;
margin: 0;
padding: 0;
height: 100vh;
display: flex;
flex-direction: column;
}
.page{
flex: 1 0 auto;
padding: 0 0 0;
width: 100%;
2023-10-05 02:55:39 +03:00
}
.validationError {
2023-12-29 21:55:47 +03:00
color: red;
2023-10-05 02:55:39 +03:00
}
2023-12-29 21:55:47 +03:00
.validationPass {
color: #00b185;
}
2023-10-05 02:55:39 +03:00
.header-container {
2023-12-29 21:55:47 +03:00
text-align: left;
position: relative;
2023-10-05 02:55:39 +03:00
}
2023-12-29 21:55:47 +03:00
.header-container .header-bar {
position: absolute;
right: 10px;
2023-10-05 02:55:39 +03:00
}
2023-12-29 21:55:47 +03:00
table,
th,
td {
border: 1px solid;
border-collapse: collapse;
2023-10-05 02:55:39 +03:00
}
a {
2023-12-29 21:55:47 +03:00
color: #cfcfcf;
2023-10-05 02:55:39 +03:00
text-align: center;
}
2023-12-29 21:55:47 +03:00
2023-10-05 02:55:39 +03:00
a:link {
color: #cfcfcf;
}
a:hover {
color: white;
}
a:visited {
color: #949494;
2023-12-29 19:59:49 +03:00
}
2023-12-29 21:55:47 +03:00
ul {
2023-12-29 19:59:49 +03:00
list-style-type: none;
}
2023-12-29 21:55:47 +03:00
header {
2023-12-29 19:59:49 +03:00
display: block;
}
2023-12-29 21:55:47 +03:00
.header_wrapper {
2023-12-30 15:01:41 +03:00
font-family: Spectral;
2023-12-29 21:55:47 +03:00
background: #323833;
2023-12-29 19:59:49 +03:00
color: #a7a691;
vertical-align: top;
2023-12-29 21:55:47 +03:00
width: 100%;
padding: 0px;
2023-12-29 19:59:49 +03:00
margin-bottom: 20px;
display: inline-block;
}
2023-12-29 21:55:47 +03:00
.container {
2023-12-29 19:59:49 +03:00
width: 100%;
max-width: 1280px;
margin: 0 auto;
}
2023-12-29 21:55:47 +03:00
.header_branding {
2023-12-29 19:59:49 +03:00
float: left;
}
2023-12-29 21:55:47 +03:00
#header_right_block {
2023-12-29 19:59:49 +03:00
list-style-type: none;
list-style-image: none;
height: 100%;
margin-right: 0;
right: 0;
float: right;
padding: 0%;
}
2023-12-29 21:55:47 +03:00
.ul_right_block {
2023-12-29 19:59:49 +03:00
margin: 0 !important;
padding: 0 !important;
}
2023-12-29 21:55:47 +03:00
.li_right_block {
margin-left: 5px;
margin-right: 5px;
2023-12-29 19:59:49 +03:00
height: 100%;
2023-12-29 21:55:47 +03:00
float: left;
position: relative;
2023-12-29 19:59:49 +03:00
}
2023-12-29 21:55:47 +03:00
.header_entry {
2023-12-29 19:59:49 +03:00
height: 65px;
line-height: 65px;
display: block;
border-left: 0;
border-top: 0;
text-decoration: none;
font-variant: small-caps;
text-shadow: -1px -1px 0 #1e1e1e, 1px -1px 0 #1e1e1e, -1px 1px 0 #1e1e1e, 1px 1px 0 #1e1e1e;
2023-12-29 21:55:47 +03:00
color: #74bfbd;
2023-12-29 19:59:49 +03:00
}
2023-12-29 21:55:47 +03:00
.header_entry_link:hover {
2023-12-29 19:59:49 +03:00
color: #b6a795;
}
2023-12-29 21:55:47 +03:00
.block {
2023-12-29 19:59:49 +03:00
display: block;
}
2023-12-29 21:55:47 +03:00
.block_inner {
2023-12-29 19:59:49 +03:00
margin-left: 10px;
margin-right: 10px;
}
2023-12-29 21:55:47 +03:00
a.entry {
2023-12-29 19:59:49 +03:00
text-decoration: none;
}
2023-12-29 21:55:47 +03:00
.header_title {
2023-12-29 19:59:49 +03:00
font-size: 1.5em;
}
2023-12-29 21:55:47 +03:00
hr {
border: 0;
2023-12-29 19:59:49 +03:00
border-bottom: 1px dashed;
background: none;
2023-12-29 21:55:47 +03:00
}
button {
margin: 1em 0;
font-family: sans-serif;
font-style: normal;
font-weight: normal;
text-align: center;
font-variant: small-caps !important;
background-color: #b0c6af !important;
border: none;
border-radius: 2px;
padding: 5px 25px 5px 25px;
color: #4a3c3c;
}
2023-12-29 22:38:26 +03:00
2023-12-29 21:55:47 +03:00
button:hover {
background-color: #c2dac0 !important;
}
.sign {
width: 25%;
}
.base {
background: #283338;
padding: 20px;
box-shadow: 0 0 8px -3px #37474e;
border-radius: 3px;
width: 100%;
flex: 1;
}
2023-12-29 22:38:26 +03:00
.center {
margin-left: auto;
margin-right: auto;
width: 25em;
}
/* footer */
.footer{
background: #323833;
color: #a7a691;
margin-top: 20px;
width: 100%;
}
.inner_footer{
padding: 10px;
display: block;
float: right;
}
.copy_link{
2023-12-30 15:01:41 +03:00
font-family: Spectral;
text-shadow: -1px -1px 0 #1e1e1e, 1px -1px 0 #1e1e1e, -1px 1px 0 #1e1e1e, 1px 1px 0 #1e1e1e;
color: #74bfbd;
}
.copy_link:hover {
color: #b6a795;
}
/* error */
.error {
text-align: center;
background: #283338;
padding: 20px;
box-shadow: 0 0 8px -3px #37474e;
border-radius: 3px;
margin: auto;
}
.bli {
padding: 3px;
background-color: #D00000;
}