dolphins7.skeleton/twenty-frontend/src/css/main.scss

64 lines
955 B
SCSS
Raw Normal View History

2023-12-10 19:59:36 +01:00
@import "fonts";
@import "colors";
2023-12-22 11:29:33 +01:00
@import "forms";
2023-12-10 19:59:36 +01:00
2023-12-22 11:29:33 +01:00
*, *:before, *:after {
box-sizing: border-box;
}
html, html body, .root {
height: 100%;
}
2023-12-10 19:59:36 +01:00
body {
font-family: "SF Mono","Segoe UI Mono","Roboto Mono",Menlo,Courier,monospace;
font-weight: normal;
2023-12-10 19:59:36 +01:00
}
2023-12-22 11:29:33 +01:00
header, .root {
2023-12-10 19:59:36 +01:00
margin: 0 auto;
color: $black;
2023-12-10 19:59:36 +01:00
width: 75%;
max-width: 1024px;
}
header {
background: $black;
color: #FFF;
text-align: center;
margin-bottom: 25px;
2023-12-10 19:59:36 +01:00
h1 {
margin: 0;
padding: 5px;
2023-12-10 19:59:36 +01:00
line-height: 1;
font-weight: bold;
font-size: large;
a, a:active, a:hover, a:focus, a:link {
color: #FFF;
text-decoration: none;
}
2023-12-10 19:59:36 +01:00
}
}
2023-12-22 11:29:33 +01:00
.root {
.react-mount-point, #reactapp {
height: 100%;
2023-12-20 23:27:43 +01:00
}
2023-12-22 11:29:33 +01:00
form {
margin: 0 auto;
height: 100%;
width: 80%;
2023-12-22 11:29:33 +01:00
.textarea {
margin: 0 0 10px 0;
height: 50%;
textarea { height: 100%; }
}
}
ul {
margin: 0;
padding: 0;
list-style-type: none;
}
}