Files
new.rybstock.ru/public/assets/css/app.css
T
2026-06-03 23:24:10 +03:00

81 lines
1.2 KiB
CSS

* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
font-family: Arial, sans-serif;
color: #18201b;
background: #f7f8f4;
}
.page {
min-height: 100vh;
display: grid;
place-items: center;
padding: 24px;
}
.start-screen {
width: min(760px, 100%);
padding: 32px;
border: 1px solid #d9dfd3;
border-radius: 8px;
background: #ffffff;
}
.eyebrow {
margin: 0 0 8px;
font-size: 14px;
color: #687466;
}
h1 {
margin: 0 0 16px;
font-size: 40px;
line-height: 1.1;
}
p {
font-size: 18px;
line-height: 1.55;
}
.status-box {
display: flex;
gap: 8px;
align-items: center;
margin-top: 24px;
padding: 14px 16px;
border-radius: 8px;
background: #eef4ea;
}
.status-box.success {
background: #e8f5ec;
color: #145a2a;
}
.status-box.danger {
background: #fff0ee;
color: #8a1f11;
}
.primary-button {
appearance: none;
border: 0;
border-radius: 8px;
padding: 14px 18px;
margin-top: 18px;
font-size: 16px;
font-weight: 700;
color: #ffffff;
background: #1d5d3b;
cursor: pointer;
}
.primary-button:hover {
background: #16492e;
}