ured-temporary/style.css

72 lines
1.2 KiB
CSS
Raw Normal View History

2023-07-03 13:08:57 +00:00
/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');
/* HTML & Body styling */
html, body {
height: 100%;
margin: 0;
padding: 0;
2023-07-04 15:19:58 +00:00
/* background: linear-gradient(to bottom, #eee 0%, #ddd 60%, #ccc 100%); */
2023-07-03 13:08:57 +00:00
background-size: auto;
overflow: hidden;
}
body::after {
content: "";
2023-07-03 13:27:53 +00:00
background-image: url(https://www.transparenttextures.com/patterns/dotnoise-light-grey.png);
opacity: 1;
2023-07-03 13:08:57 +00:00
top: 0;
left: 0;
bottom: 0;
right: 0;
position: fixed;
2023-07-03 13:27:53 +00:00
z-index: 0;
2023-07-03 13:08:57 +00:00
}
/* Center section */
body {
display: flex;
justify-content: center;
align-items: center;
}
section {
2023-07-04 15:11:35 +00:00
text-align: left;
position: relative;
}
2023-07-04 15:19:58 +00:00
section::after {
content: '';
width: 82%;
height: 0px;
position: absolute;
top: 59%;
box-shadow: 0px 0px 69px 15px black;
z-index: 0;
left: 10%;
opacity: 0.7;
2023-07-03 13:08:57 +00:00
}
/* SVG and h1 styling */
svg {
2023-07-03 13:17:28 +00:00
width: 55vmin;
2023-07-03 13:22:06 +00:00
height: auto;
2023-07-03 13:08:57 +00:00
}
h1 {
font-family: 'DM Serif Display', serif;
2023-07-03 13:22:06 +00:00
margin: 0;
2023-07-03 13:17:28 +00:00
line-height: 1;
}
2023-07-03 13:22:06 +00:00
h1:nth-of-type(1){
2023-07-04 15:11:35 +00:00
font-size: 4vmin;
opacity: 0.3;
2023-07-03 13:22:06 +00:00
margin-top: 3vmin;
2023-07-03 13:17:28 +00:00
}
2023-07-03 13:22:06 +00:00
h1:nth-of-type(2){
2023-07-04 15:11:35 +00:00
font-size: 4vmin;
opacity: 0.2;
2023-07-03 13:08:57 +00:00
}