byecorps.com/css/style.css

96 lines
1.2 KiB
CSS
Raw Permalink Normal View History

2024-03-29 12:55:51 +00:00
html {
font-family: sans-serif;
background-color: #e6feff;
background-image: url(../img/background.bmp);
background-repeat: no-repeat;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
-webkit-box-sizing: inherit;
-moz-box-sizing: inherit;
2024-03-29 12:55:51 +00:00
}
.hidden {
display: none;
}
.top-right {
position: absolute;
top: 0;
right: 10px;
}
#wrapper {
margin-top: 86px;
position: absolute;
left: 0;
2024-03-29 12:55:51 +00:00
}
.body {
background-color: white;
border-top: #ccc 2px solid;
border-right: #ccc 2px solid;
border-bottom: #ccc 2px solid;
border-radius: 0 10px 10px 0;
padding-bottom: 16px;
padding-left: 16px;
padding-right: 16px;
width: 600px;
2024-03-29 12:55:51 +00:00
}
#people td > h3 {
margin: 0;
}
#people td > p {
margin: 3px auto;
}
#friends img {
height: 64px;
}
#friends a {
padding: 0 10px;
}
#navigation {
padding-right: 10px;
text-align: right;
}
#time {
padding-left: 20px;
}
#footer {
vertical-align: top;
}
#badges {
text-align: right;
}
#badges img {
vertical-align: middle;
}
/*@media (prefers-color-scheme: dark) {
html {
filter: invert(1);
}
}*/