-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout-us.css
More file actions
121 lines (99 loc) · 1.51 KB
/
Copy pathabout-us.css
File metadata and controls
121 lines (99 loc) · 1.51 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
/*@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;1,300&display=swap');*/
*{
padding: 0;
margin: 0;
}
.body
{
background: dimgray;
}
h1,h3, p
{
font-size: 18px;
color: red;
}
.about-1
{
width: 80%;
margin-top: 20px;
margin-left: 10%;
padding: 5px;
background-color: #f95f5f;
}
.about-1 h1
{
text-align: center;
color: black;
font-weight: 100;
}
.about-1 p
{
text-align: center;
padding: 30px;
color: #fff;
}
.about-item
{
height: 300px;
margin-bottom: 20px;
margin-top: 40px;
background-color: white;
padding: 80px, 30px;
box-shadow: 0 0 9px rgba(0, 0, 0, .6);
}
.about-item i
{
font-size: 43px;
margin: 0;
}
.about-item h3
{
font-size: 25px;
margin-bottom: 10px;
}
.about-item hr
{
width: 46px;
height: 3px;
background-color: #5fbff9;
margin: 0 auto;
border: none;
}
.about-item p
{
margin-top: 20px;
}
.about-item:hover
{
background-color: #5fbff9;
cursor: pointer;
}
.about-item:hover i,
.about-item:hover h3,
.about-item:hover p
{
color: #fff;
}
.about-item:hover hr
{
background-color: #fff;
}
.about-item:hover i
{
transform: translateY(-20px);
}
.about-item:hover i,
.about-item:hover h3,
.about-item:hover hr
{
transition: all 400ms ease-in-out;
}
footer
{
background: #212226;
}
footer p
{
color: #fff;
}