A PHP Remake of the Rocknarok Multiverse Time clock https://rmt.yandols.xyz
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
RMT-Clock-PHP/style.css

90 lines
1.4 KiB

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap");
* {
box-sizing: border-box;
font: inherit;
color: inherit;
}
/* All */
body {
font-family: "Poppins", sans-serif;
color: #333;
background-color: snow;
margin: 0 auto;
/* max-width: 1000px; */
}
/* Header */
header {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
h1 {
font-weight: 800;
font-size: 3em;
padding: 18px;
}
/* Footer */
footer {
display: flex;
flex-direction: column;
align-items: center;
flex-grow: 1;
text-align: center;
}
footer .bottom {
margin: 2em 0;
padding: 0;
text-align: center;
}
footer .bottom li {
border-left: solid 1px rgba(144, 144, 144, 0.25);
display: inline-block;
list-style: none;
margin-left: 1.5em;
padding-left: 1.5em;
}
footer .bottom li:first-child {
border-left: 0;
margin-left: 0;
padding-left: 0;
}
/* Othe Style Elements */
ul {
padding-left: 1.5rem;
}
.item {
padding: 8px;
background-color: white;
border: 4px solid tomato;
border-radius: 6px;
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
}
.height-50 {
height: 50vh;
}
/* Main Layout Container */
.mainlayout.container {
display: grid;
height: 100vh;
grid-template-rows: auto 1fr auto;
}