parent
bbc87e3fa6
commit
e34bb969c2
@ -0,0 +1,89 @@
|
|||||||
|
@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;
|
||||||
|
}
|
Loading…
Reference in new issue