marc/index.css
Marc Beninca 9371c992c8 test
2022-06-09 16:47:30 +02:00

62 lines
787 B
CSS

@viewport {
width: device-width;
zoom: 1;
}
html {
background: rgb(0,0,0);
color: rgb(160,160,160);
font-family: sans;
}
.tabs {
position: relative;
}
.tab {
float: left;
}
.tab input {
display: none;
}
.tab label {
background: rgb(128,0,128);
cursor: pointer;
text-decoration: underline;
}
.tab_content {
display: none;
left: 0;
position: absolute;
}
input:checked ~ label {
background: rgb(128,128,0);
}
input:checked ~ label ~ .tab_content {
display: block;
}
a {
color: rgb(0,192,192);
}
a:hover {
color: rgb(192,0,0);
}
a:visited {
color: rgb(0,160,160);
}
table {
empty-cells: hide;
}
th,td {
border-radius: .2em;
}
th {
background: rgb(64,64,64);
color: rgb(128,128,0);
}
td {
background: rgb(48,48,48);
border: 1px solid;
border-color: rgb(192,192,192);
text-align: center;
}