onecatper.day/style.css

84 lines
1.1 KiB
CSS
Raw Normal View History

* {
margin: 0;
padding: 0;
}
2024-07-26 05:05:09 +00:00
body {
overflow: hidden;
}
nav {
padding: 1em;
display: flex;
justify-content: space-around;
}
header {
2024-07-26 04:00:28 +00:00
height: 15%;
width: auto;
}
header, footer {
background-color: #4c8ed2;
color: #403f46;
}
header div h1 {
2024-07-26 04:36:31 +00:00
font-size: 2.75em;
display: inline;
}
.greeting {
width: 50%;
display: flex;
flex-direction: column;
}
.buttons {
display: flex;
align-items: center;
justify-content: flex-end;
}
button {
font-size: 1.25em;
margin: 5px;
padding: 10px;
border-radius: 10px;
color: #403f46;
background-color: #1cb9b5;
box-shadow: 10px 5px 5px #67cbc4;
}
button span {
vertical-align: middle;
padding-left: 5px;
padding-right: 5px;
}
main {
2024-07-26 05:05:09 +00:00
padding: 0.5em;
background-color:#9a6db6;
display: flex;
2024-07-26 04:00:28 +00:00
justify-content: center;
height: 70%;
width: auto;
}
.cat-img {
2024-07-26 04:00:28 +00:00
height: auto;
width: auto;
border-radius: 10px;
border: 5px solid #6d5a8c;
}
2024-07-26 04:00:28 +00:00
footer {
width: auto;
2024-07-26 05:05:09 +00:00
height: 15%;
2024-07-26 04:00:28 +00:00
}
footer p {
padding: 1em;
text-align: center;
font-size: 1.5em;
}