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

123 lines
1.7 KiB
CSS
Raw Normal View History

2023-10-05 02:55:39 +03:00
@font-face{
font-family: "Terminus";
src: url('/styles/TerminusBold.ttf');
}
body {
margin-top: 0;
margin-bottom: 0;
2023-12-29 19:59:49 +03:00
margin-right: 0;
margin-left: 0;
2023-10-05 02:55:39 +03:00
font-family: Terminus;
background-color: #212121;
color: #cfcfcf;
}
.validationError {
color: red;
}
.header-container {
text-align: left;
position: relative;
}
.header-container .header-bar {
position: absolute;
right: 10px;
}
table, th, td {
border: 1px solid;
border-collapse: collapse;
}
a {
color: #cfcfcf;
text-align: center;
}
a:link {
color: #cfcfcf;
}
a:hover {
color: white;
}
a:visited {
color: #949494;
2023-12-29 19:59:49 +03:00
}
ul{
list-style-type: none;
}
header{
display: block;
}
.header_wrapper{
background:#323833;
color: #a7a691;
vertical-align: top;
width:100%;
padding:0px;
margin-bottom: 20px;
display: inline-block;
}
.container{
width: 100%;
max-width: 1280px;
margin: 0 auto;
}
.header_branding{
float: left;
}
#header_right_block{
list-style-type: none;
list-style-image: none;
font-family: sans-serif;
height: 100%;
margin-right: 0;
right: 0;
float: right;
padding: 0%;
font-size: 0.9em;
}
.ul_right_block{
margin: 0 !important;
padding: 0 !important;
}
.li_right_block{
height: 100%;
}
.header_entry{
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;
color:#74bfbd;
}
.header_entry_link:hover{
color: #b6a795;
}
.block{
display: block;
}
.block_inner{
margin-left: 10px;
margin-right: 10px;
}
a.entry{
text-decoration: none;
}
.header_title{
font-size: 1.5em;
}
hr{
border: 0;
border-bottom: 1px dashed;
background: none;
2023-10-05 02:55:39 +03:00
}