Spaces:
Sleeping
Sleeping
Update style.css
Browse files- static/css/style.css +11 -8
static/css/style.css
CHANGED
|
@@ -115,36 +115,39 @@ a:focus-visible {
|
|
| 115 |
|
| 116 |
.about-box {
|
| 117 |
color: #f7fafc;
|
| 118 |
-
background:
|
| 119 |
-
border-radius:
|
| 120 |
padding: 2.2rem 2.7rem;
|
| 121 |
margin: 2.5rem auto 2rem auto;
|
| 122 |
text-align: center;
|
| 123 |
font-size: 1.13rem;
|
| 124 |
max-width: 650px;
|
| 125 |
width: 100%;
|
| 126 |
-
box-shadow: 0 6px 32px rgba(159,122,234,0.
|
| 127 |
-
border:
|
| 128 |
-
backdrop-filter: blur(
|
| 129 |
font-family: var(--font-heading);
|
| 130 |
font-weight: 700;
|
| 131 |
letter-spacing: 0.01em;
|
|
|
|
| 132 |
}
|
|
|
|
| 133 |
.about-title {
|
| 134 |
font-size: 1.4em;
|
| 135 |
-
color:
|
| 136 |
font-family: var(--font-heading);
|
| 137 |
margin-bottom: 0.5em;
|
| 138 |
letter-spacing: 0.03em;
|
| 139 |
}
|
|
|
|
| 140 |
.about-box a {
|
| 141 |
display: inline-block;
|
| 142 |
margin-top: 0.7em;
|
| 143 |
-
color:
|
| 144 |
font-weight: 700;
|
| 145 |
text-decoration: underline;
|
| 146 |
font-size: 1.01em;
|
| 147 |
-
border-bottom: 2px solid #
|
| 148 |
transition: color 0.2s, border-color 0.2s;
|
| 149 |
}
|
| 150 |
.about-box a:hover {
|
|
|
|
| 115 |
|
| 116 |
.about-box {
|
| 117 |
color: #f7fafc;
|
| 118 |
+
background: rgba(44, 41, 66, 0.93); /* Soft dark with a hint of purple */
|
| 119 |
+
border-radius: 20px;
|
| 120 |
padding: 2.2rem 2.7rem;
|
| 121 |
margin: 2.5rem auto 2rem auto;
|
| 122 |
text-align: center;
|
| 123 |
font-size: 1.13rem;
|
| 124 |
max-width: 650px;
|
| 125 |
width: 100%;
|
| 126 |
+
box-shadow: 0 6px 32px rgba(159,122,234,0.13);
|
| 127 |
+
border: 1.5px solid #4a436a;
|
| 128 |
+
backdrop-filter: blur(6px);
|
| 129 |
font-family: var(--font-heading);
|
| 130 |
font-weight: 700;
|
| 131 |
letter-spacing: 0.01em;
|
| 132 |
+
transition: background 0.3s, border 0.3s;
|
| 133 |
}
|
| 134 |
+
|
| 135 |
.about-title {
|
| 136 |
font-size: 1.4em;
|
| 137 |
+
color: var(--primary);
|
| 138 |
font-family: var(--font-heading);
|
| 139 |
margin-bottom: 0.5em;
|
| 140 |
letter-spacing: 0.03em;
|
| 141 |
}
|
| 142 |
+
|
| 143 |
.about-box a {
|
| 144 |
display: inline-block;
|
| 145 |
margin-top: 0.7em;
|
| 146 |
+
color: var(--primary);
|
| 147 |
font-weight: 700;
|
| 148 |
text-decoration: underline;
|
| 149 |
font-size: 1.01em;
|
| 150 |
+
border-bottom: 2px solid #9f7aea44;
|
| 151 |
transition: color 0.2s, border-color 0.2s;
|
| 152 |
}
|
| 153 |
.about-box a:hover {
|