-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (95 loc) · 1.73 KB
/
style.css
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
body {
padding: 0;
margin: 0;
background-color: #130d0a;
font-family: "Playfair Display", serif;
color: #fff;
}
#hero {
height: 260px;
overflow: hidden;
position: relative;
object-fit: fill;
}
#content {
background-color: #ffffee;
}
.layer {
background-position: bottom center;
background-size: auto;
background-repeat: no-repeat;
width: 100%;
height: 260px;
position: fixed;
z-index: -1;
/* border-bottom: 200px #130d0a; */
}
#hero-mobile {
display: none;
background: url("./cmd.png") no-repeat center bottom/cover;
height: 320px;
}
.first-section {
padding: 50px 0 20px 0;
}
.text-header {
font-size: 50px;
text-align: center;
}
h1 {
/* line-height: 40%; */
margin-bottom: 30px;
margin-top: 0px;
/* color: #130d0a; */
}
p {
color: #130d0a;
font-size: 18px;
line-height: 150%;
}
#hero,
.layer {
min-height: 260px;
}
.layer-bg {
/* background-image: url("./CMD DESK-4.png"); */
background-color: #ffe88a;
border-bottom-width: 3px;
border-color: #130d0a;
}
.layer-1 {
background-image: url("./CMD DESK-3.png");
background-position: left top;
}
.layer-2 {
background-image: url("./CMD DESK-2.png");
background-position: right top;
}
.layer-3 {
background-image: url("./CMD DESK-1.png");
background-position: left bottom;
}
.layer-4 {
background-position: center bottom;
/* background-image: url("./bottom.png"); */
}
.layer-overlay {
background-image: url("CMD DESK.png");
background-position: right center;
}
@media only screen and (max-width: 38px) {
#hero {
display: none;
}
#hero-mobile {
display: block;
}
}
/* .tutorial-link {
color: #fff;
font-size: 18px;
text-decoration: underline;
}
.tutorial-link:hover {
color: #ede0d5;
} */