RaPla-Middleware-LinkGen/styles.css
Patrick Müller 4f70e5a943
All checks were successful
Jenkins Production Deployment
#5 Added Darkmode JS for dialog (#10)
Co-authored-by: SpiritsOfMayhem <d.huh@t-online.de>
Reviewed-on: #10
Co-authored-by: Patrick Müller <patrick@plutodev.de>
Co-committed-by: Patrick Müller <patrick@plutodev.de>
2021-10-13 12:01:52 +00:00

107 lines
1.5 KiB
CSS

html,
body {
color: #121212;
}
.body--dark-mode {
background-color: #222222;
color: white;
}
.modal--dark-mode {
background-color: #222222;
color: white;
}
#raplalinkcontainer {
height: 100vh;
font-family: Nunito, sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.raplalinkcontainer--nav.row{
margin: inherit;
display: flex;
justify-content: space-evenly;
align-items: center;
height: 10%;
}
.raplalinkcontainer--nav__subtext {
font-weight: 100;
font-size: 0.75em;
text-align: center;
}
.content {
height: 100%;
}
@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;
}
#submitBtn.submitButton--dark-mode {
background-color: white;
color: #222222;
}