Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ <h2 class="percentage">60%</h2>
<div class="circle1"></div>
<div class="circle2"></div>
</body>
</html>
</html>
19 changes: 12 additions & 7 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ main {

.glass {
background: white;
min-height: 80vh;
height: 80vh;
width: 60%;
background: linear-gradient(
to right bottom,
Expand Down Expand Up @@ -69,6 +69,9 @@ main {
left: 10%;
}
.dashboard {
padding: 3rem 0rem;
font-size: 12px;
gap: 2rem;
flex: 1;
display: flex;
flex-direction: column;
Expand All @@ -84,7 +87,7 @@ main {
}
.link {
display: flex;
margin: 2rem 0rem;
margin: 1rem 0rem;
padding: 1rem 5rem;
align-items: center;
}
Expand All @@ -100,13 +103,13 @@ main {
background: linear-gradient(to right top, #65dfc9, #6cdbeb);
border-radius: 2rem;
color: white;
padding: 1rem;
padding: 1.5rem 2rem;
position: relative;
}

.pro img {
position: absolute;
top: -10%;
top: -22%;
right: 10%;
}
.pro h2 {
Expand All @@ -117,7 +120,7 @@ main {

/* GAMES */
.status {
margin-bottom: 3rem;
margin-bottom: 2rem;
}

.status input {
Expand All @@ -133,13 +136,15 @@ main {
}

.games {
margin: 5rem;

margin: 5rem 3rem;
display: flex;
flex-direction: column;
justify-content: space-evenly;
}

.card {
font-size: 12px;
display: flex;
background: linear-gradient(
to left top,
Expand All @@ -148,7 +153,7 @@ main {
);
border-radius: 1rem;
margin: 2rem 0rem;
padding: 2rem;
padding: 1rem;
box-shadow: 6px 6px 20px rgba(122, 122, 122, 0.212);
justify-content: space-between;
}
Expand Down