Spaces:
Running
Running
Commit
·
ce7695c
1
Parent(s):
71963ab
Update style.css
Browse files
style.css
CHANGED
|
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
/* Custom Styles */
|
| 3 |
+
body {
|
| 4 |
+
font-family: 'Arial', sans-serif;
|
| 5 |
+
line-height: 1.6;
|
| 6 |
+
}
|
| 7 |
+
.bg-image {
|
| 8 |
+
background-image: url('https://source.unsplash.com/1600x900/?nature,technology');
|
| 9 |
+
height: 85vh;
|
| 10 |
+
background-position: center;
|
| 11 |
+
background-repeat: no-repeat;
|
| 12 |
+
background-size: cover;
|
| 13 |
+
display: flex;
|
| 14 |
+
align-items: center;
|
| 15 |
+
justify-content: center;
|
| 16 |
+
text-align: center;
|
| 17 |
+
}
|
| 18 |
+
.hero-text {
|
| 19 |
+
color: #ffffff;
|
| 20 |
+
}
|
| 21 |
+
.btn-outline-light {
|
| 22 |
+
border-color: #ffffff;
|
| 23 |
+
color: #ffffff;
|
| 24 |
+
}
|
| 25 |
+
.btn-outline-light:hover {
|
| 26 |
+
background-color: #ffffff;
|
| 27 |
+
color: #3498db;
|
| 28 |
+
}
|
| 29 |
+
.card {
|
| 30 |
+
border-radius: 10px;
|
| 31 |
+
transition: transform 0.3s ease-in-out;
|
| 32 |
+
}
|
| 33 |
+
.card:hover {
|
| 34 |
+
transform: translateY(-5px);
|
| 35 |
+
}
|
| 36 |
+
.footer {
|
| 37 |
+
background-color: #2c3e50;
|
| 38 |
+
color: #ffffff;
|
| 39 |
+
text-align: center;
|
| 40 |
+
}
|
| 41 |
+
.profile-pic {
|
| 42 |
+
max-width: 300px;
|
| 43 |
+
max-height: 300px;
|
| 44 |
+
border-radius: 50%;
|
| 45 |
+
}
|
| 46 |
+
|
| 47 |
+
.description {
|
| 48 |
+
font-size: 1.2rem;
|
| 49 |
+
}
|
| 50 |
+
.img1{
|
| 51 |
+
height: 60px;
|
| 52 |
+
width: 60px;
|
| 53 |
+
border-radius: 50px;
|
| 54 |
+
}
|
| 55 |
+
.social-icons {
|
| 56 |
+
display: flex;
|
| 57 |
+
justify-content: center;
|
| 58 |
+
align-items: center;
|
| 59 |
+
gap: 20px;
|
| 60 |
+
margin-top: 20px;
|
| 61 |
+
}
|
| 62 |
+
|
| 63 |
+
.social-icon {
|
| 64 |
+
color: #fff;
|
| 65 |
+
font-size: 28px;
|
| 66 |
+
border-radius: 50%;
|
| 67 |
+
width: 55px;
|
| 68 |
+
height: 55px;
|
| 69 |
+
display: flex;
|
| 70 |
+
align-items: center;
|
| 71 |
+
justify-content: center;
|
| 72 |
+
transition: all 0.3s ease;
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
.social-icon:hover {
|
| 76 |
+
transform: translateY(-3px);
|
| 77 |
+
box-shadow: 0px 4px 10px rgba(226, 251, 85, 0.3);
|
| 78 |
+
color: #81e7fc;
|
| 79 |
+
text-decoration: none;
|
| 80 |
+
}
|