website/default_style.css

58 lines
921 B
CSS

body {
background-color: rgb(5, 0, 11);
color: rgb(255, 150, 150);
text-align: center;
align-content: center;
}
h1 {
color : rgb(255, 40, 60);
}
h1, h2, h3 {
text-align: center;
}
div {
width: 60%;
position: relative;
margin: auto;
text-align: left;
border-color: rgb(60, 0, 90);
border-width: thick;
border-style: double;
background-color: rgb(21,0,31);
padding: 5px;
padding-bottom: 10px;
margin-bottom: 10px;
padding-left: 5%;
padding-right: 5%;
}
a {
color:rgb(150, 150, 255);
}
hr {
width: 90%;
color: rgb(60, 0, 90);
background-color: rgb(60, 0, 90);
border-color: rgb(60, 0, 90);
margin-left: 5%;
}
.borderless {
border-width: 0px;
}
.left {
float: left;
text-align: center;
clear: left;
width: 25%;
}
.right {
float: right;
text-align: center;
clear: right;
width: 25%;
}