RaPla-Middleware-LinkGen/styles.css

107 lines
1.5 KiB
CSS
Raw Permalink Normal View History

2021-10-07 08:04:32 +00:00
html,
body {
2021-10-09 12:42:19 +00:00
color: #121212;
}
.body--dark-mode {
background-color: #222222;
color: white;
}
.modal--dark-mode {
background-color: #222222;
color: white;
}
2021-10-09 12:42:19 +00:00
#raplalinkcontainer {
height: 100vh;
font-family: Nunito, sans-serif;
display: flex;
2021-10-11 07:01:09 +00:00
flex-direction: column;
2021-10-09 12:42:19 +00:00
justify-content: center;
align-items: center;
}
.raplalinkcontainer--nav.row{
margin: inherit;
display: flex;
justify-content: space-evenly;
align-items: center;
height: 10%;
}
2021-10-11 07:01:09 +00:00
.raplalinkcontainer--nav__subtext {
font-weight: 100;
font-size: 0.75em;
text-align: center;
}
2021-10-09 12:42:19 +00:00
.content {
2021-10-07 08:04:32 +00:00
height: 100%;
}
2021-10-09 12:42:19 +00:00
@media only screen and (min-width: 900px) {
.content {
width: 33%;
}
}
.raplalinkcontainer--nav {
background-color: white;
top: 0;
position: sticky;
}
.nav--dark-mode {
background-color: #222222;
color: white;
}
.raplalinkcontainer--nav__text {
font-weight: 700;
}
.far {
font-size: 1.3em;
}
.raplalinkcontainer--img img{
width: 10%;
}
.raplalinkcontainer__preface {
padding: 1em;
}
.raplalinkcontainer__form {
padding: 1.3em;
}
.raplalinkcontainer__header {
font-family: Nunito, sans-serif;
display: flex;
justify-content: space-between;
}
.raplalinkcontainer__header--button {
text-align: end;
padding: 1em;
}
#submitBtn {
width: 100%;
}
p#full-link {
overflow: auto;
}
2021-10-09 12:42:19 +00:00
#submitBtn.submitButton--dark-mode {
background-color: white;
color: #222222;
}