marc/index.css

76 lines
1.1 KiB
CSS
Raw Normal View History

2022-05-14 09:47:02 +00:00
@viewport {
width: device-width;
zoom: 1;
}
2022-06-10 18:45:50 +00:00
2022-06-05 16:41:14 +00:00
html {
background: rgb(0,0,0);
color: rgb(160,160,160);
font-family: sans;
}
2022-06-09 14:47:30 +00:00
.tabs {
position: relative;
}
.tab {
float: left;
}
.tab input {
display: none;
}
.tab label {
2022-06-10 08:26:24 +00:00
background: linear-gradient(rgba(64,64,64,1), rgba(64,64,64,0));
border-color: rgb(128,128,128);
border-radius: .5em;
border-style: solid;
border-width: 1px 1px 0 1px;
color: rgb(128,128,0);
2022-06-09 14:47:30 +00:00
cursor: pointer;
2022-06-10 18:45:50 +00:00
display: flex;
2022-06-10 08:26:24 +00:00
font-weight: bold;
padding: .5em 1em;
2022-06-09 14:47:30 +00:00
text-decoration: underline;
2022-06-10 18:45:50 +00:00
transition: all .5s;
}
.tab label:hover {
font-size: 1.1em;
2022-06-09 14:47:30 +00:00
}
.tab_content {
display: none;
left: 0;
position: absolute;
}
input:checked ~ label {
2022-06-10 08:26:24 +00:00
background: linear-gradient(rgba(128,128,128,1), rgba(128,128,128,0));
2022-06-09 14:47:30 +00:00
}
input:checked ~ label ~ .tab_content {
display: block;
}
2022-06-05 16:41:14 +00:00
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);
}
2022-06-04 22:53:28 +00:00
td {
2022-06-05 16:41:14 +00:00
background: rgb(48,48,48);
2022-06-04 22:53:28 +00:00
border: 1px solid;
2022-06-05 16:41:14 +00:00
border-color: rgb(192,192,192);
text-align: center;
2022-06-04 22:53:28 +00:00
}