formatted like my Boss wants it (help!)
This commit is contained in:
parent
5d11f87dd3
commit
b507a6b0ea
19 changed files with 1425 additions and 1136 deletions
29
styles.css
29
styles.css
|
@ -206,7 +206,8 @@ article ul a li {
|
|||
margin-bottom: 10px;
|
||||
border-radius: var(--border-radius);
|
||||
padding: 10px;
|
||||
transition: background-color var(--transition-speed), box-shadow var(--transition-speed);
|
||||
transition: background-color var(--transition-speed),
|
||||
box-shadow var(--transition-speed);
|
||||
}
|
||||
|
||||
article ul a li:hover {
|
||||
|
@ -214,7 +215,7 @@ article ul a li:hover {
|
|||
box-shadow: 0 0 10px var(--accent-color);
|
||||
}
|
||||
|
||||
article ul a li{
|
||||
article ul a li {
|
||||
text-decoration: none;
|
||||
color: var(--accent-color);
|
||||
font-weight: bold;
|
||||
|
@ -256,14 +257,19 @@ section .card a {
|
|||
color: inherit;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
padding: 20px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
/* Card styles */
|
||||
section .card {
|
||||
text-align: center;
|
||||
list-style: none;
|
||||
background: linear-gradient(180deg, rgba(0, 0, 50, 0.9), rgba(10, 10, 100, 0.9), rgba(30, 30, 150, 0.9));
|
||||
background: linear-gradient(
|
||||
180deg,
|
||||
rgba(0, 0, 50, 0.9),
|
||||
rgba(10, 10, 100, 0.9),
|
||||
rgba(30, 30, 150, 0.9)
|
||||
);
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 5px 20px rgba(0, 0, 50, 0.8), 0 0 10px rgba(255, 255, 255, 0.1);
|
||||
border: 1px solid #2e3a60;
|
||||
|
@ -278,7 +284,12 @@ section .card {
|
|||
/* Hover effect */
|
||||
section .card:hover {
|
||||
transform: translateY(-8px);
|
||||
background: linear-gradient(180deg, rgba(30, 30, 150, 0.9), rgba(40, 0, 100, 0.9), rgba(100, 0, 150, 0.9));
|
||||
background: linear-gradient(
|
||||
180deg,
|
||||
rgba(30, 30, 150, 0.9),
|
||||
rgba(40, 0, 100, 0.9),
|
||||
rgba(100, 0, 150, 0.9)
|
||||
);
|
||||
box-shadow: 0 10px 30px rgba(0, 0, 100, 0.7), 0 0 20px rgba(255, 221, 85, 0.8);
|
||||
}
|
||||
|
||||
|
@ -314,7 +325,11 @@ section .card::before {
|
|||
width: 60px;
|
||||
height: 60px;
|
||||
border-radius: 50%;
|
||||
background: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
|
||||
background: radial-gradient(
|
||||
circle,
|
||||
rgba(255, 255, 255, 0.1),
|
||||
rgba(255, 255, 255, 0.02)
|
||||
);
|
||||
box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
|
||||
animation: spin 8s linear infinite;
|
||||
}
|
||||
|
@ -411,7 +426,7 @@ footer {
|
|||
width: 60px;
|
||||
}
|
||||
|
||||
.project-name{
|
||||
.project-name {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue