Archived
1
0
This repository has been archived on 2024-09-09. You can view files and clone it, but cannot push or open issues or pull requests.

86 lines
1.4 KiB
CSS
Raw Normal View History

2020-02-04 13:27:46 -06:00
html,
body,
#root {
2020-02-04 13:27:46 -06:00
height: 100%;
width: 100%;
}
body {
2020-02-20 20:08:06 -05:00
background: rgb(244, 247, 252);
color: #111;
2020-02-04 13:27:46 -06:00
margin: 0;
2020-02-18 19:06:35 -05:00
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
"Segoe UI Emoji", "Segoe UI Symbol";
2020-02-04 13:27:46 -06:00
overflow: hidden;
}
2020-02-04 18:16:45 -06:00
input,
2020-02-04 18:16:45 -06:00
button {
font-family: inherit;
font-size: 1rem;
line-height: 1rem;
}
.-button {
background-color: rgb(87, 114, 245);
border-radius: 5px;
border: none;
box-sizing: border-box;
color: white;
cursor: pointer;
padding: 18px 20px;
text-decoration: none;
2020-02-04 18:16:45 -06:00
}
2020-02-05 13:25:44 -06:00
.center-container {
2020-02-05 13:25:44 -06:00
align-items: center;
box-sizing: border-box;
display: flex;
flex-direction: column;
2020-02-05 13:25:44 -06:00
justify-content: center;
min-height: 100%;
padding: 20px;
width: 100%;
2020-02-05 13:25:44 -06:00
}
.card-box {
background-color: rgb(250, 253, 258);
border-radius: 5px;
box-shadow: rgba(60, 66, 87, 0.117647) 0px 7px 14px 0px, rgba(0, 0, 0, 0.117647) 0px 3px 6px 0px;
max-width: 650px;
width: 100%;
}
.card-box > .header {
border-bottom: 1px solid #ddd;
color: #444;
padding: 30px;
}
.card-box > .header > .main {
margin: 0;
font-size: 1.5rem;
}
.card-box > .header > .sub {
color: #555;
margin-top: 10px;
}
.card-box > .content {
padding: 40px;
}
2020-03-16 12:43:32 -05:00
.card-box > .content > .none {
margin: 2px 0;
}
.card-box + .card-box {
margin-top: 26px;
}
2020-03-16 12:43:32 -05:00
canvas {
top: 0;
left: 0;
}