-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanother_one.css
More file actions
131 lines (129 loc) · 2.91 KB
/
another_one.css
File metadata and controls
131 lines (129 loc) · 2.91 KB
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
*{
margin:0;
padding:0;
box-sizing:border-box;
}
html,body{
width:100%;
height:100%;
}
#main{
height: 100%;
width:100%;
display: flex;
align-items: flex-end;
/* justify-content: space-between; */
padding: 0px 90px;
padding-top: 150px;
gap: 40px;
}
#left{
height: 100%;
width: 48%;
/* background-color: aquamarine; */
display: flex;
flex-direction: column;
justify-content: space-between;
padding-bottom: 40px;
}
#right{
height: 90%;
width: 34%;
/* background-color: blue; */
}
#rtop{
height: 50px;
width: 100%;
/* background-color: cornflowerblue; */
display: flex;
align-items: center;
justify-content: space-between;
font-family: sans-serif;
margin-bottom: 3px;
}
#rtop h4{
font-weight: 600;
font-size: 12px;
}
#rtop h5{
font-size: 10px;
margin-right: 10px;
}
#right img{
width: 100%;
height: 84%;
object-fit: cover;
}
#left h1{
font-size:90px;
line-height: 80px;
font-weight: 500;
font-family: sans-serif;
}
#bottom{
width: 100%;
/* height:40%; */
/* background-color: blanchedalmond; */
}
#color{
border: 1px solid black ;
/* background-color: blueviolet; */
width:fit-content;
padding: 5px 10px;
border-radius: 50px;
display: flex;
align-items: center;
justify-content: center;
}
#color h5{
font-size: 10px;
font-weight: 500;
margin-right: 5px;
}
#color1{
height: 10px;
width:10px;
background-color: chocolate;
border-radius: 50%;
margin-right: 2px;
}
#color2{
height: 10px;
width:10px;
background-color: rgb(30, 210, 60);
border-radius: 50%;
}
#bottom h2{
margin-top: 15px;
font-size: 15px;
margin-bottom: 7px;
}
#bottom p{
font-size: 10px;
width:68%;
font-weight: 600;
line-height: 15px;
color: rgb(52, 50, 50);
}
#circle{
height: 100px;
width: 100px;
background-color: rgb(31, 23, 51);
color: white;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
position: absolute;
top: 50%;
right: 15%;
}
#rotate{
/* background-color: red; */
color: black;
transform-origin: 0 0;
rotate: -90deg;
padding-left: 10px;
position: relative;
left: -7%;
}