-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
127 lines (109 loc) · 2.17 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Gilroy";
}
html,body {
height: 100%;
width: 100%;
/* background-color: aqua; */
}
#main {
height: 100%;
width: 100%;
background-color: #ededed;
display: grid;
grid-template-columns: 27% 27% 46%;
grid-template-rows: 24% 60% 16%;
}
#left-top-left{
/* background-color: crimson; */
padding: 40px;
}
#square{
height: 20px;
width: 20px;
background-color: black;
rotate: 45deg;
}
#left-top-right{
/* background-color: rgb(56 , 19 , 83); */
justify-self: right;
padding: 23px;
text-align: right;
}
#left-top-right h4{
/* background-color: red;
*/
margin-bottom: 50px;
font-size: 20px;
font-weight: 500;
font-weight: bold ;
}
#left-top-right h5{
font-size: 18px;
font-weight: 500;
color: #333;
font-weight: bold ;
}
#right{
/* background-color: blueviolet; */
grid-row: 1 / 4;
grid-column: 3;
/* padding: 13px; */
/* padding-right: 150px; */
padding-top: 25px;
padding-bottom: 38px;
padding-right: 60px;
}
#right video{
height: 100%;
width: 100%;
object-fit:cover;
border-radius: 3px;
}
#left-center{
/* background-color: royalblue; */
grid-column: 1/3;
padding: 20px;
}
#left-center h1{
font-size: 6vw;
text-transform: uppercase;
font-weight: 500;
line-height: 6.2vw;
font-family: Arial, Helvetica, sans-serif;
}
#left-center h1:nth-child(2n){
text-align: center;
}
#left-bottom{
/* background-color: chartreuse; */
grid-column: 1/3;
}
#left-bottom p{
width: 70%;
padding: 40px;
font-size: 15px;
font-weight: 500;
color: #666;
text-align: center;
}
#arrow{
position: absolute;
top: 50%;
left: 52%;
transform: translate(-50%);
display: flex;
justify-content: center;
background-color: orangered;
padding: 40px;
color: #fff;
border-radius: 50%;
transform: translate(-50%,-50%);
}
#arrow i {
font-size: 48px;
font-weight: 135;
}