Dalmationer.art/css/tutorialstyles.css

89 lines
1.5 KiB
CSS

body{
color: rgb(53, 32, 32);
background-color: antiquewhite;
background-image: url("../images/pap12.gif");
font-size: 1em;
line-height: 1.5;
font-family: monospace, "FixedSys-Excelsior";
}
@font-face {
font-family: "FixedSys-Excelsior";
src: url(../fonts/FSEX300.ttf);
}
#content{
background-color: white;
border: 1px solid black;
margin-left: 20%;
margin-right: 20%;
margin-top: 5px;
margin-bottom: 5px;
padding: 3px;
}
h1{
text-align: center;
}
h1, h2, h3, h4{
font-family:"FixedSys-Excelsior";
font-weight: 100;
-webkit-font-smoothing: "none";
-moz-osx-font-smoothing: "greyscale";
font-smooth: "never";
}
table{
border: 1px solid black;
width: 80%;
margin-left: auto;
margin-right: auto;
text-align: left;
table-layout: fixed;
}
tr,thead,tbody,th,td{
border: 1px solid black;
vertical-align:top;
}
th{
padding: 5px;
}
.indent{
margin-left: 10%;
}
#backbutton{
float: left;
background-color: white;
border-width: 3px 2px 2px 3px;
border-style: double solid solid double;
border-color: black;
border-radius: 5px;
position: sticky;
top: 10px;
padding: 2px;
padding-left: 5px;
padding-right: 5px;
}
@media only screen and (max-width: 800px) {
#content{
width: 100%;
margin-left: 0px;
margin-right:0px;
}
#backbutton{
position: static;
}
table{
width: 100%;
}
}