-
Notifications
You must be signed in to change notification settings - Fork 0
/
about us .css
125 lines (118 loc) · 2.17 KB
/
about us .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
*{
margin: 0;
padding: 0;
font-family: 'Mooli', sans-serif;
}
.ul img{
height: 50px;
width: 50px;
transition: all 0.2s ease-in-out;
}
.ul img:hover{
transform: scale(1.2,1.2);
}
.ul{
list-style-type: none;
margin: 0;
padding: 0;
background-color: #f9e4e3;
display: flex;
height: 60px;
width: 100%;
justify-content: space-evenly;
align-items: center;
}
.li a{
color: burlywood;
background-color: rgba(255, 255, 255, 0.1);
text-shadow: 1px 1px 1px black;
text-decoration: none;
font-size: 20px;
padding: 20px;
}
.li :hover {
box-shadow: 0 0 4px rgba(255, 255, 255, 1);
color: rgba(222, 184, 135, 0.605);
background-color: #fbc9d69a;
}
.main_page{
height: 80%;
width: 100%;
display: flex;
justify-content: space-between;
}
.footer{
position: fixed;
bottom: 0;
right: 0;
left: 0;
background-color: #fbc9d69a;
height: 20%;
width: 100%;
display: flex;
justify-content: space-around;
}
.base_line{
margin: 5px;
font-size: 22px;
margin-top: 30px;
margin-left: 80px;
font-weight: bold;
}
.base_para{
margin: 5px;
width: 50%;
font-size: 15px;
margin: auto;
text-align: center;
color: rgb(87, 79, 87);
}
.main_text{
margin-left: 75px;
margin-top: 120px;
}
.paragraph{
font-size: 18px;
color: rgb(104, 104, 104);
}
.socials i{
padding: 0 5px;
color: burlywood;
opacity: 0.5;
padding-right: 10px;
font-size: 25px;
}
.socials i:hover{
opacity: 1;
transform: scale(1.1);
}
.tag_line{
font-size: 32px;
font-weight: 900;
width: 400px;
margin-top: 0px;
}
.paragraph{
margin-top: 20px;
margin-bottom: 20px;
}
.about{
font-size: 25px;
color: rgb(105, 105, 105);
font-weight: 500;
margin-bottom: 5px;
}
.nav_bar{
position: fixed;
top: 0px;
height: 50px;
width: 100%;
}
.image{
margin-top: 40px;
}
.image img{
height: 350px;
width: 575px;
margin-left: 50px;
}