website/default_style.css

58 lines
921 B
CSS
Raw Permalink Normal View History

2022-03-25 11:08:07 +00:00
body {
2022-04-16 14:40:41 +00:00
background-color: rgb(5, 0, 11);
2022-03-25 11:08:07 +00:00
color: rgb(255, 150, 150);
text-align: center;
2022-04-16 14:40:41 +00:00
align-content: center;
}
h1 {
color : rgb(255, 40, 60);
}
2023-01-14 15:23:00 +00:00
h1, h2, h3 {
text-align: center;
}
2022-04-16 14:40:41 +00:00
div {
2023-01-14 15:23:00 +00:00
width: 60%;
2022-04-16 14:40:41 +00:00
position: relative;
margin: auto;
2023-01-14 15:23:00 +00:00
text-align: left;
2022-04-16 14:40:41 +00:00
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;
2023-01-14 15:23:00 +00:00
padding-left: 5%;
padding-right: 5%;
2022-04-16 14:40:41 +00:00
}
a {
color:rgb(150, 150, 255);
}
hr {
width: 90%;
color: rgb(60, 0, 90);
2022-07-26 18:27:00 +00:00
background-color: rgb(60, 0, 90);
border-color: rgb(60, 0, 90);
2023-01-14 15:23:00 +00:00
margin-left: 5%;
}
2022-04-16 14:40:41 +00:00
.borderless {
border-width: 0px;
}
.left {
float: left;
text-align: center;
clear: left;
width: 25%;
}
.right {
float: right;
text-align: center;
clear: right;
width: 25%;
}