mirror of
https://github.com/hyprwm/hyprland-website.git
synced 2024-11-17 02:45:59 +01:00
0ada531199
* Update home.css * Update home.css * Changed width of rice showcase images and capitalized fame * Centered the wall of fame description and the images (+responsivity) * deleted old stuff which I had commented out * Rewrite 404 * Changed wrong 404 page title from 'Hyprland' to 'Oops ...'
44 lines
749 B
CSS
44 lines
749 B
CSS
.con404 {
|
|
margin: auto;
|
|
text-align: center;
|
|
color: #cfe8f6;
|
|
font-family: "Sofia-Pro-Medium";
|
|
}
|
|
|
|
.con404 > img {
|
|
margin-top: 60px;
|
|
margin-bottom: 60px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
max-height: 40vh;
|
|
max-width: 60vw;
|
|
}
|
|
|
|
.con404 > h1 {
|
|
margin-bottom: 20px;
|
|
font-size: 48px;
|
|
}
|
|
|
|
.con404 > p {
|
|
font-size: 20px;
|
|
margin-left: 30px;
|
|
margin-right: 30px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.con404 > a > button{
|
|
padding: 20px;
|
|
background-color: aquamarine;
|
|
border: solid aquamarine;
|
|
border-radius: 0.2rem;
|
|
margin-bottom: 60px;
|
|
transition: all 0.5s ease;
|
|
font-size: 20px;
|
|
font-family: "Sofia-Pro-Medium";
|
|
}
|
|
|
|
.con404 > a > button:hover {
|
|
background-color: #1a1a2e;
|
|
color: aquamarine;
|
|
transform: scale(1.2);
|
|
}
|