mannaggianastri/static/style.css

81 lines
997 B
CSS
Raw Permalink Normal View History

2024-06-15 12:12:39 +02:00
html,
body {
width: 100%;
}
body {
display: flex;
align-items: center;
justify-content: space-around;
flex-direction: column;
}
* {
font-size: 32px;
}
2024-06-15 12:50:20 +02:00
@media (prefers-color-scheme: dark) {
body {
background-color: #556262;
}
2024-06-15 17:41:02 +02:00
a:link {
color: orange; /* unvisited link */
}
a:visited {
color: red; /* visited link */
}
a:hover {
color: white; /* mouse over link */
}
a:active {
color: yellow; /* selected link */
}
2024-06-15 12:50:20 +02:00
}
2024-06-15 12:12:39 +02:00
#main {
display: flex;
align-items: center;
justify-content: space-around;
flex-direction: column;
/* height: 0.8vh; */
/* width: 0.65vw; */
}
#logo {
width: 60%;
2024-06-14 21:32:25 +02:00
margin: 0 auto;
2024-06-15 12:12:39 +02:00
}
@media only screen and (max-width: 801px) {
/* mobile */
}
@media only screen (min-width: 802px) {
/* desktop */
}
#form {
margin: 0 auto;
/* margin-top: 10%; */
2024-06-14 21:32:25 +02:00
width: 300px;
}
2024-06-15 12:12:39 +02:00
/* p { */
/* height: 100%; */
/* width: 100%; */
/* margin: 0 auto; */
/* } */
2024-06-14 21:32:25 +02:00
thead {
}
tbody {
}
td {
2024-06-15 12:12:39 +02:00
padding: 0.1em;
2024-06-14 21:32:25 +02:00
}