-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHome-Page.css
More file actions
32 lines (31 loc) · 812 Bytes
/
Home-Page.css
File metadata and controls
32 lines (31 loc) · 812 Bytes
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
body {
font-family: "Poppins", sans-serif;
margin: 10px;
padding: 5px;
line-height: 1.6;
color: #f7f2f2;
font-size: medium;
background-image: url("img4.jpeg");
background-size: cover;
background-position: center;
background-attachment: fixed;
}
.abc {
color: rgb(247, 243, 243);
}
.about {
background-color: #0093e9;
background-image: linear-gradient(160deg, #0093e9 0%, #3aefdb 100%);
padding: 20px;
width: 120px;
font-size: medium;
display: inline-block;
text-align: center;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
border-radius: 15px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about:hover {
box-shadow: 7px 7px 10px rgba(161, 149, 149, 0.815);
transform: translate(0px, -10px);
}