dbio/www/styles.css

90 lines
1.4 KiB
CSS
Raw Normal View History

2022-01-29 20:34:11 +00:00
body {
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
2022-01-29 20:34:11 +00:00
color: #2c3e50;
margin: 0;
2022-01-29 20:34:11 +00:00
}
h1, h2, h3, h4, h5, h6 {
font-family: "Lucida Console", Monaco, monospace;
}
a { color: #3498db; text-decoration: none; }
a:hover { color: #3498db; text-decoration: underline; }
2022-01-29 20:34:11 +00:00
.jumbotron {
background-color: #3498db;
height: 50vh;
2022-01-29 20:34:11 +00:00
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
2022-01-29 20:34:11 +00:00
}
.jumbotron-inner {
2022-01-29 20:34:11 +00:00
text-align: center;
}
.form {
padding-top: 40px;
padding-bottom: 60px;
display: flex;
align-items: center;
justify-content: center;
2022-01-29 20:34:11 +00:00
}
.form-inner {
width: 520px;
2022-01-29 20:34:11 +00:00
max-width: 90%;
}
form > #elm > div {
display: flex;
flex-direction: column;
align-items: center;
2022-01-29 20:34:11 +00:00
}
input, textarea {
width: 100%;
padding: 1em;
margin-bottom: 0.5em;
2022-01-29 20:34:11 +00:00
border: none;
border-bottom: 1px solid black;
2022-01-29 20:34:11 +00:00
}
input[type=submit] {
border-bottom: none;
background-color: #3498db;
color: #2c3e50;
width: auto;
padding-left: 2em;
padding-right: 2em;
margin-top: 0.5em;
font-weight: bold;
2022-01-29 20:34:11 +00:00
}
.about {
background-color: #ecf0f1;
height: 75vh;
display: flex;
justify-content: center;
align-items: center;
padding-left: 2em;
padding-right: 2em;
}
.about-inner {
width: 75%;
2022-01-29 20:34:11 +00:00
}
.about h2 {
line-height: 2em;
}
.footer {
padding-top: 1em;
padding-bottom: 1em;
2022-01-29 20:34:11 +00:00
text-align: center;
background-color: #34495e;
color: #ecf0f1
}