yavsc/web/Theme/style.css

176 lines
2.6 KiB
CSS

body {
background: black;
background-image: url('/images/Banner.png');
background-repeat: no-repeat;
color: #D0FFD0;
font-family: 'Arial', cursive;
margin-bottom:3em;
}
main {
background-color: rgba(0,0,0,0.8);
float:left;
margin:.5em;
}
aside div {
display: block;
background-color: rgba(32,16,16,0.5);
margin: 0.7em;
float: left;
margin:.5em;
}
video,img {
max-width:100%;
max-height:75%;
position:relative;
}
footer {
position:fixed;
bottom:0;
left:0;
right:0;
background-color:rgba(0,16,0,0.6);
display: flex;
justify-content: space-around;
z-index:-1;
}
footer img { max-height: 2em; }
a {
text-decoration: none;
color: #B0B080;
background-color:rgba(0,30,0,0.5);
}
.actionlink:hover {
background-color:rgba(30,0,124,0.5);
border-color: white;
}
a:visited {
color: #90B090;
}
label {
font-size: medium;
}
.message {
font-size: large;
background-color: rgba(0,64,0,0.1);
}
.error {
color: #f88;
font-size: large;
background-color: rgba(128,0,0,0.3);
}
.validation-summary-errors{
color: #f88;
background-color: rgba(64,0,0,0.3);
}
.editblog {
width: 95%;
height: 95%;
}
.metablog {
font-style: italic;
font-size: small;
text-align: right;
display: inline;
}
.blogtitle {
display:inline;
}
.contenu {
padding-left: 20px;
}
.validation-summary-errors{
color: #f88;
}
.actionlink {
color: #B0B080;
border: solid .5px;
right:3px;
padding: 4px;
border-radius:25px;
background-color:rgba(0,0,32,0.8);
font-size:x-small;
z-index:1;
cursor: pointer;
font-family: 'Arial', cursive;
}
.code {
font-family: "monospace";
background-color: rgba(0,0,256,0.1);
border-radius:25px;
white-space: pre-wrap;
}
.layout {
border-width: 0;
}
.avatar {
max-width: 64px;
max-height: 64px;
}
.shoh { display:inline; }
.hiduh {
display:none;
}
.shoh:hover {
background-color: rgba(0,60,40,.3);
border: solid rgb(256,256,0);
}
.shoh:hover + .hiduh {
display:block; position:absolute; left:20px; right:20px;
background-color: rgb(0,0,40); border: solid rgb(256,256,0);
}
.comment {
border-radius:25px;
border-width:1px;
border-style: solid;
border-color:rgb(0,64,0);
font-size: smaller;
}
.hidcom {
display:none; position:fixed; z-index:-1;
padding:5px; margin:5px;
background-color: rgba(0,0,40,.8);
}
.actionlink:hover + .hidcom {
display:block;
}
@media print {
body {background-color:white;color:black;}
header,footer,.postcomment,.actionlink,.metablog{ display:none;}
}
@media all and (max-width: 640px) {
aside {
float: none;
}
footer img {
max-height: 1em;
}
footer a {
font-size: xx-small;
}
body { margin-bottom:1em; }
}