zonerwww/style.css
2024-07-11 14:15:53 -04:00

97 lines
No EOL
1.5 KiB
CSS

body {
background-image: url("https://i.zoner.work/firefish/kyushu.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
font-family: sans-serif;
color: white;
}
.wrapper {
display: flex;
flex-flow: row wrap;
margin-top: 150px;
margin-left: auto;
margin-right: auto;
width: 50%;
min-width: 600px;
padding:2em;
background-color: #0D1117;
border-radius: 40px;
box-shadow: 3px 3px 5px #111111;
justify-content: space-around;
}
p, ul, li {
padding: 0px;
margin: 0.8em;
font-size: 0.9em;
list-style-type: none;
}
#linkblock {
flex: 1;
padding-left: 2em;
border-left: 1px solid rgba(255, 255, 255,0.3);
}
#header {
flex: 2;
text-align: center;
align-items: center;
margin-top: auto;
margin-bottom: auto;
}
a {
color: white;
}
a:hover {
color: orangered
}
#content {
order: 6;
width: 100%;
}
#content > p, #content > ul {
width: 100%;
margin-left: auto;
margin-right: auto;
}
hr {
margin-top: 2em;
margin-bottom: 2em;
}
#footer {
display: block;
position: fixed;
bottom: 3px;
margin-left: auto;
margin-right: auto;
text-align: center;
font-size: 0.8em;
width: 100%;
}
#longcontentfooter {
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
font-size: 0.8em;
margin-top: 20px;
width: 100%;
}
h4 {
text-align: center;
}
h5 {
font-size: 0.95em;
}