-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
55 lines (51 loc) · 1.17 KB
/
about.css
File metadata and controls
55 lines (51 loc) · 1.17 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
.intro {
text-align: center;
background: linear-gradient(to right, #e97fe4, #7df8f6);
color: rgb(10, 0, 0);
text-align: center;
padding: 20px 10px;
font-family: "Playwrite AU SA", serif;
font-size: larger;
}
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-repeat: no-repeat;
background-attachment: fixed;
}
.section {
padding: 20px 15px;
max-width: 800px;
margin: 0 auto;
}
.card-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 20px;
}
.card {
color: #000000;
background-color: #8ec5fc;
background-image: linear-gradient(62deg, #8ec5fc 0%, #e0c3fc 100%);
padding: 20px;
border-radius: 8px;
transition: transform 0.3s ease;
transition: box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-10px);
box-shadow: 7px 7px 10px rgba(161, 149, 149, 0.815);
}
.card i {
font-size: 2rem;
color: #4caf50;
margin-bottom: 10px;
}