-
Notifications
You must be signed in to change notification settings - Fork 0
/
left.css
59 lines (49 loc) · 1.24 KB
/
left.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
.hero-section {
display: grid;
grid-template-columns: 2fr 2fr;
background-color: rgb(9, 9, 10);
background: linear-gradient(to right, rgb(70, 70, 75),rgb(22, 21, 29) , black);
color: white;
font-family: 'Roboto', sans-serif;
font-weight: 1px;
}
/* left side */
.hero-section > .left {
padding: 20px 20px 5px 30px;
font-size: 40px;
}
.hero-section > .left > .bottom-bottons {
font: size 5px;
}
.hero-section > .left > .bottom-bottons button {
height: 100%;
border: none;
background: black;
font-size: 1.5em;
/* font: size 100px; */
}
.hero-section > .left > .bottom-bottons button:nth-of-type(1) {
color: black;
background-color: rgb(80, 180, 113);
font-weight: 20px;
}
.hero-section > .left > .bottom-bottons button:nth-of-type(2) {
color: white;
}
/* right side */
.hero-section > .right {
display: flex;
justify-content: flex-start;
flex-direction: column;
object-position: 100%;
padding-top: 30px;
font-size: 20px;
}
.hero-section > .right > img {
display: flex;
/* padding: 20px; */
max-height: 30em;
height: 100%;
/* object-fit:cover; */
object-position: 100%;
}