1
Fork 0
This repository has been archived on 2022-08-23. You can view files and clone it, but cannot push or open issues or pull requests.
web-drs-frontend/src/styles.scss

58 lines
977 B
SCSS
Raw Normal View History

:root {
--primay: black;
--bg-primay: white;
--link: #2a0b0b;
text-align: center;
}
p {
margin: 20px 0px;
}
button {
outline: none;
border: none;
border-radius: 0;
padding: 10px 35px;
background: #845ec2;
color: white;
&:hover:not(:disabled) {
filter: brightness(120%);
cursor: pointer;
}
&:disabled {
filter: brightness(30%);
cursor: default;
}
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
main {
display: flex;
flex-direction: column;
height: 100vh;
justify-content: space-between;
#messages-container {
display: flex;
flex-direction: column-reverse;
overflow-y: scroll;
> :nth-child(even) {
background-color: lightgray;
}
}
#message-writing-area {
}
}