morty
64 строки · 848.0 Байт
1@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap");
2
3* {
4font-family: "Roboto Condensed", sans-serif;
5margin: 0;
6padding: 0;
7box-sizing: border-box;
8}
9
10ul,
11li,
12dl {
13list-style-type: none;
14margin: 0;
15padding: 0;
16}
17
18h1,
19h2,
20h3,
21h4,
22h5,
23h6 {
24margin: 0;
25}
26
27a {
28text-decoration: none;
29color: inherit;
30display: inline-block;
31&:hover {
32text-decoration: none;
33color: inherit;
34}
35}
36
37p {
38margin: 0;
39padding: 0;
40}
41
42input::-webkit-outer-spin-button,
43input::-webkit-inner-spin-button {
44-webkit-appearance: none;
45margin: 0;
46}
47
48.App {
49width: 1100px;
50margin: 0 auto;
51padding: 50px 0 50px 0;
52position: relative;
53.bg-decoration {
54position: absolute;
55right: -174px;
56bottom: -70px;
57z-index: -1;
58}
59}
60
61main {
62margin-top: 50px;
63position: relative;
64}
65