2021-01-28 22:51:26 +03:00
|
|
|
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&subset=cyrillic');
|
|
|
|
|
2021-11-12 22:08:48 +03:00
|
|
|
:root {
|
|
|
|
--color-primary: #fb4b4b;
|
|
|
|
}
|
|
|
|
|
2021-01-28 22:51:26 +03:00
|
|
|
* {
|
2021-11-12 22:08:48 +03:00
|
|
|
padding: 0; margin: 0; outline: 0;
|
|
|
|
font-family: "Roboto";
|
|
|
|
font-size: 1.1rem;
|
2021-01-28 22:51:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
*::selection {
|
2021-11-12 22:08:48 +03:00
|
|
|
background-color: var(--color-primary);
|
|
|
|
color: #ffffff;
|
2021-01-28 22:51:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2021-11-12 22:08:48 +03:00
|
|
|
background-color: #ffffff;
|
2021-01-28 22:51:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
div.wrap {
|
2021-11-12 22:08:48 +03:00
|
|
|
max-width: 800px;
|
|
|
|
margin: 0 auto;
|
2021-01-28 22:51:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
div.header {
|
2021-11-12 22:08:48 +03:00
|
|
|
background-color: var(--color-primary);
|
|
|
|
color: #ffffff;
|
|
|
|
padding: 16px;
|
2021-01-28 22:51:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
div.content {
|
2021-11-12 22:08:48 +03:00
|
|
|
margin: 16px 0;
|
2021-01-28 22:51:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
button, textarea {
|
2021-11-12 22:08:48 +03:00
|
|
|
display: block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border: 1px solid var(--color-primary);
|
|
|
|
width: 100%;
|
|
|
|
padding: 8px;
|
2021-01-28 22:51:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
2021-11-12 22:08:48 +03:00
|
|
|
color: #000000;
|
|
|
|
background-color: var(--color-primary);
|
|
|
|
border-top: 0;
|
|
|
|
border-bottom: 0;
|
2021-01-28 22:51:26 +03:00
|
|
|
}
|
|
|
|
button:hover {
|
2021-11-12 22:08:48 +03:00
|
|
|
color: #ffffff;
|
2021-01-28 22:51:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
2021-11-12 22:08:48 +03:00
|
|
|
resize: none;
|
2021-01-28 22:51:26 +03:00
|
|
|
}
|
|
|
|
textarea:disabled {
|
2021-11-12 22:09:40 +03:00
|
|
|
color: #000000;
|
2021-11-12 22:08:48 +03:00
|
|
|
background-color: #ffffff;
|
2021-01-28 22:51:26 +03:00
|
|
|
}
|