-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfounder_introduction.css
118 lines (98 loc) · 2.37 KB
/
founder_introduction.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
/* FOUNDER INTRODUCTION (FOURTH SECTION CSS) */
.about_aman{
display: flex;
justify-content: flex-start;
align-items: center;
/* flex-flow: column-reverse; */
background-color: rgba(243,243,255,1);
/* border: 2px solid green; */
padding: 60px 20px;
}
.aman_img{
width: 47vw;
/* border: 4px solid rgb(245, 5, 5); */
margin: 20px 20px
}
.aman_img > img{
width: 100%;
}
.aman_disc{
width: 23vw;
/* border: 2px solid orangered; */
padding: 40px 20px;
margin: 20px 20px;
}
.aman_disc > h1{
font-size: 2.125rem;
font-family: "ROBOTO" , sans-serif;
font-weight: 400;
letter-spacing: 2px;
line-height: 50px;
}
.aman_disc > p{
font-size: 0.99rem;
font-family: "ROBOTO" , sans-serif;
font-weight: 300;
line-height: 26px;
}
.aman_disc > button{
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(243,243,255,1);
border: 2px solid #2c2c96;
color: #2c2c96;
font-size: 1.1rem;
padding: 10px 8px;
cursor: pointer;
border-radius: 8px;
margin: 30px 0px;
}
.aman_disc > button > a{
text-decoration: none;
}
.aman_disc > button > i{
font-size: 26px;
}
.aman_disc > button:hover{
transform: scale(1.1);
transition: transform .4s ease;
}
.aman_disc > button:hover > a{
text-decoration: underline #2c2c96;
}
/* ELLIPSE SHAPE IN THE ABOUT AMAN SECTION CSS */
.hustler_ellipse_shape{
/* background-color: rgba(243,243,255,1); */
background: linear-gradient(180deg, rgba(243,243,255,1) 0% , rgba(243,243,255,1) 50%, rgba(213,243,255,1) 50%, rgba(213,243,255,1) 100%);
display: flex;
justify-content: center;
align-items: center;
position: relative;
z-index: 5;
}
.ellipse_shape{
display: flex;
justify-content: center;
align-items: center;
position: relative;
background-color: white;
width: 970px;
height: 500px;
/* border: 2px solid black; */
border-radius: 800px/450px;
z-index: 5;
}
.ellipse_shape > img {
position: absolute;
left: 25px;
top: 20px;
}
.ellipse_shape >h1{
color: rgba(20, 20, 20, 0.904);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 3rem;
font-weight: 400;
text-align: center;
line-height: 2.5rem;
}