Skip to content

Commit

Permalink
uhh sorry zhivehn
Browse files Browse the repository at this point in the history
  • Loading branch information
codingkatty committed Jan 3, 2025
1 parent 08ce96e commit 23f24b2
Show file tree
Hide file tree
Showing 2 changed files with 142 additions and 1 deletion.
141 changes: 141 additions & 0 deletions chill.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
body {
margin: 0;
font-family: 'Open Sans', Arial, sans-serif;
background-color: #001b42;
color: #fff;
text-align: center;
}

header nav {
display: flex;
justify-content: flex-end;
align-items: center;
padding: 10px 20px;
background-color: transparent
}


header .navigation {
display: flex;
}

header .navigation .navigation-items a {
position: relative;
color: #ffffff;
font-size: 1em;
font-family: 'Open Sans', Arial, sans-serif;
font-weight: 600;
text-decoration: none;
margin-left: 15px;
margin-right: 15px;
transition: color 0.3s ease;
}

header .navigation .navigation-items a::after {
content: '';
position: absolute;
left: 0;
bottom: -5px;
width: 100%;
height: 3px;
background: #5271ff;
transform: scaleX(0);
transition: transform 0.3s ease;
}

header .navigation .navigation-items a:hover::after {
transform: scaleX(1);
}

.profile {
margin-left: 20px;
}

.profile img {
width: 40px;
height: 40px;
border-radius: 50%;
}

.main-container {
display: flex;
align-items: center;
justify-content: flex-start;
padding: 20px;
}

.player-card {
display: inline-block;
background-color: #002963;
padding: 15px;
border-radius: 10px;
width: 200px;
margin-right: 30px;
margin-top: 10px;
text-align: center;
}

.player-avatar img {
width: 50px;
height: 50px;
margin-bottom: 10px;
}

.cover {
width: 100px;
height: 100px;
margin: 10px auto;
}

button {
background-color: #00509e;
border: none;
color: white;
font-size: 20px;
padding: 10px;
border-radius: 5px;
cursor: pointer;
}

button:hover {
background-color: #004080;
}

.title h1 {
font-family: 'Press Start 2P', Arial, sans-serif;
font-size: 60px;
margin: 0;
color: white;
}

.title span {
color: gold;
}

.scrolling-text {
background-color: #004080;
color: #fff;
padding: 5px;
border-radius: 5px;
overflow: hidden;
white-space: nowrap;
box-sizing: border-box;
margin: 10px auto;
width: 80%;
font-size: 14px;
}

.scrolling-text p {
display: inline-block;
animation: scroll 10s linear infinite;
}

@keyframes scroll {
from {
transform: translateX(100%);
}

to {
transform: translateX(-100%);
}
}
2 changes: 1 addition & 1 deletion chill.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
rel="stylesheet"
/>

<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="chill.css" />
<style>
body {
margin: 0;
Expand Down

0 comments on commit 23f24b2

Please sign in to comment.