amalthea-mc.github.io/style.css

71 lines
1.3 KiB
CSS
Raw Normal View History

2022-01-07 22:16:35 +00:00
@font-face {
font-family: "PRegular";
src: url("8bitOperatorPlus8-Regular.ttf");
}
@font-face {
font-family: "PBold";
src: url("8bitOperatorPlus8-Bold.ttf"); /* see /license.txt */
}
::selection {
background-color: beige;
color: black;
}
body {
2022-01-08 21:41:13 +00:00
padding: 0px;
margin: 0px;
display: table;
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
2022-01-07 22:16:35 +00:00
background-color: black;
color: beige;
2022-01-08 21:41:13 +00:00
text-shadow: 1px 1px black;
2022-01-07 22:16:35 +00:00
font-family: PRegular;
}
td {
padding: 10px;
}
a {
color: beige;
}
a:hover {
2022-01-08 21:59:29 +00:00
background-color: beige;
color: midnightblue;
}
a:focus-visible {
background-color: beige;
color: midnightblue;
outline: none;
2022-01-07 22:16:35 +00:00
}
.card {
2022-01-08 21:41:13 +00:00
display: table-cell;
vertical-align: middle;
2022-01-07 22:16:35 +00:00
}
.content {
padding: 20px 50px;
2022-01-08 21:41:13 +00:00
margin-left: auto;
margin-right: auto;
width: 400px;
2022-01-07 22:16:35 +00:00
background-color: midnightblue;
border: 5px solid beige;
}
.address {
text-align: center;
margin: 0px;
2022-01-08 21:41:13 +00:00
text-shadow: 3px 3px black;
2022-01-07 22:16:35 +00:00
font-family: PBold;
}
.address-desc {
text-align: center;
2022-01-08 21:41:13 +00:00
text-shadow: 2px 2px black;
2022-01-07 22:16:35 +00:00
font-size: 24px;
}
.links {
width: 100%;
margin: auto;
margin-top: 10px;
font-size: 24px;
2022-01-08 21:59:29 +00:00
}