is115-php/index.css

65 lines
931 B
CSS
Raw Normal View History

2021-08-23 10:41:53 +02:00
body {
text-align: center;
2021-08-25 09:03:20 +02:00
font-family: sans-serif;
color: #222;
2021-08-23 10:41:53 +02:00
}
.container {
max-width: 900px;
margin: auto;
}
.assignment {
text-align: left;
max-width: 700px;
margin: auto;
}
.bigContent {
max-height: 250px; width: 950px; overflow: scroll; border: 1px solid black; margin: auto;
}
hr {
color: #aaa;
}
table {
margin: 0 auto;
2021-08-31 10:00:49 +02:00
}
input[type=number] {
width: 70px;
2021-09-21 18:49:02 +02:00
}
pre {
text-align: left;
max-width: 200px;
margin: auto;
}
.error, .suksess {
position: relative;
padding: 1rem 1rem;
margin-bottom: 1rem;
border: 1px solid transparent;
border-radius: .25rem;
}
.error {
color: #842029;
background-color: #f8d7da;
border-color: #f5c2c7;
}
.suksess {
color: #0f5132;
background-color: #d1e7dd;
border-color: #badbcc;
}
2021-09-21 22:36:25 +02:00
.table {
border-collapse: collapse;
}
.table tr:nth-child(2n) {
background-color: #0002;
}