-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
143 lines (133 loc) · 2.56 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
*{
margin : 0;
padding: 0;
box-sizing: border-box;
}
html,body{
height: 100%;
width: 100%;
}
#main{
height: 100%;
width: 100%;
background-color: lightgrey;
position: relative;
}
#nav{
height: 120px;
padding: 20px 50px;
width: 100%;
display: flex;
justify-content: space-between;
font-family: sans-serif;
font-family: gilroy;
}
#nav img{
height: 30px;
margin-right: 120px;
margin-left: 40px;
}
#nav-prt1{
display: flex;
justify-content: center;
}
#nav-prt1 h4{
margin-right: 50px;
font-size: 18px;
text-transform: uppercase;
font-weight: 600;
}
#nav-prt2 i{
margin-right: 40px;
font-size: 20px;
font-weight: 24px;
}
#content {
width: 100%;
height: calc(100% - 110px);
position: relative;
display: flex;
}
#left {
height: 100%;
width: 35%;
padding: 20px 60px;
justify-content: center;
margin-left: 30px;
margin-top: 70px;
position: relative;
}
#left h1{
font-size: 50px;
text-transform: uppercase;
margin-bottom: 30px;
font-family: 'Ubuntu', sans-serif;
}
#left p{
font-size: 15px;
margin-bottom: 50px;
justify-content: center;
}
#left h5{
color: rgb(93, 91, 91);
margin-bottom: 20px;
}
#left button{
padding: 20px 40px;
margin-bottom: 10px;
background-color: black;
color: rgb(246, 249, 249);
border-radius: 0px 70px 70px;
text-align: center;
box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.4);
}
#right {
height: 100%;
width: 70%;
margin-left: 20px;
position: relative;
padding: 50px;
white-space: nowrap;
overflow-x: auto;
}
#right::-webkit-scrollbar{
display: none;
}
.elem{
height: 480px;
width: 300px;
background: #fff;
position: relative;
object-fit: cover;
border-radius: 10px;
box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3);
display: inline-block;
margin-right: 30px;
}
.elem img{
height: 60%;
width: 100%;
padding: 0px 10px 0px 10px;
position: absolute;
object-fit: cover;
top: 10%;
}
.elem h4{
position: absolute;
bottom: 0;
right: 0;
background: lightgray;
padding: 15px 30px;
border-radius: 10px;
border-top-right-radius: 0;
}
.elem h5{
position: absolute;
bottom: 9%;
right: 0;
background: black;
padding: 10px 20px;
color: #fff;
border-radius: 10px;
border-bottom-right-radius: 0;
}