maciejpedzi.ch/assets/css/style.css

40 lines
592 B
CSS
Raw Normal View History

2021-07-08 18:05:09 +02:00
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
2020-11-27 23:12:38 +01:00
}
2021-07-08 18:05:09 +02:00
body {
2021-01-17 19:45:35 +01:00
display: flex;
2021-07-08 18:05:09 +02:00
flex-direction: column;
2020-11-27 23:12:38 +01:00
}
2021-07-08 18:05:09 +02:00
.frame {
flex-grow: 1;
background-color: #00309c;
2020-11-27 23:12:38 +01:00
}
2021-07-08 18:05:09 +02:00
#welcome-container {
flex-grow: 5;
display: flex;
align-items: center;
justify-content: center;
font-family: Arial, Helvetica, sans-serif;
background: radial-gradient(
circle at left top,
rgb(249, 249, 249) 0%,
#5a7edc 25%,
#5a7edc 40%,
#5a7edc 100%
);
}
#welcome-text {
color: #fff;
text-shadow: 3px 4px 0px rgb(49, 81, 181);
font-size: 5rem;
font-weight: bold;
2020-11-27 23:12:38 +01:00
}