Blame view

public/scss/blocks/_404.scss 1.01 KB
b6103c749   Андрей Ларионов   Обновление js и c...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
  .page-404 {
  	background: url(../images/bg-3.svg) no-repeat 100% / cover;
  	overflow: hidden;
  	&__body {
  		display: flex;
  		flex-direction: column;
  		align-items: center;
  		justify-content: center;
  		text-align: center;
  		padding: 60px 0;
  		color: $black;
  		font-size: 12px;
  		gap: 10px;
  		line-height: 1.4;
  		@media (min-width: $tablet) {
  			font-size: 18px;
  			padding: 120px 0;
  			gap: 20px;
  		}
  		@media (min-width: $desktop) {
  			padding: 180px 0;
  			text-align: left;
  		}
  	}
  	&__numb {
  		font-size: 114px;
  		line-height: 1;
  		color: $green;
  		font-weight: 700;
  		@media (min-width: $tablet) {
  			font-size: 184px;
  		}
  	}
  	&__title {
  		@media (min-width: $tablet) {
  			font-weight: 700;
  			font-size: 44px;
  		}
  		@media (min-width: $desktop) {
  			width: 710px;
  			position: relative;
  			left: 200px;
  		}
  	}
  	&__subtitle {
  		@media (min-width: $desktop) {
  			width: 710px;
  			position: relative;
  			left: 200px;
  		}
  	}
  	&__button {
  		margin-top: 10px;
  		@media (min-width: $desktop) {
  			position: relative;
  			left: -45px;
  		}
  	}
1fe4f9ffd   Андрей Ларионов   Обновление визуал...
59
  }