marc/index.css

129 lines
1.7 KiB
CSS
Raw Normal View History

2023-06-29 18:44:01 +00:00
@media screen and (max-width: 1200px) {
html {
font-size: 2em;
}
}
/*
* { border: 1px solid; }
/*
header { background: #800000; }
nav { background: #008000; }
section { background: #000080; }
/**/
* {
box-sizing: border-box;
//margin: 0;
//padding: 0;
2022-05-14 09:47:02 +00:00
}
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;
2023-06-29 18:44:01 +00:00
font-size: 1.25em;
}
body {
margin: 0 auto;
position: relative;
}
header {
background-image: url("debian.jpeg");
background-position: center;
background-size: cover;
padding: 1vh 1vw 0 1vw;
position: absolute;
width: 100%;
z-index: 1;
}
section {
min-height: 100vh;
padding: 7em 1vw 1vh 1vw;
position: absolute;
top: 0;
width: 100%;
}
section:not(:target) {
display: none;
}
section:target {
display: block;
}
nav {
display: flex;
flex-wrap: wrap;
2022-06-05 16:41:14 +00:00
}
2022-06-09 14:47:30 +00:00
2022-11-15 21:52:03 +00:00
img {
border: 1px solid;
border-color: rgb(192,192,192);
border-radius: 1em;
height: 8em;
}
2023-06-29 18:44:01 +00:00
a {
text-decoration: none;
2022-06-09 14:47:30 +00:00
}
2023-06-29 18:44:01 +00:00
nav a {
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;
2023-06-29 18:44:01 +00:00
#color: rgb(128,128,0);
2022-06-10 08:26:24 +00:00
font-weight: bold;
2023-06-29 18:44:01 +00:00
padding: .25em .5em;
//transition: all .5s;
2022-06-10 18:45:50 +00:00
}
2023-06-29 18:44:01 +00:00
nav a.active {
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
}
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
}
2023-06-29 18:44:01 +00:00
.cards {
display: flex;
}
.card {
list-style: none;
margin: 0 1em;
text-align: center;
}
.card img {
border: none;
height: 4em;
}