forked from Arquisoft/wiq_0
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
120 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,68 @@ | ||
input, button, a{ | ||
appearance: none; | ||
background-color: transparent; | ||
border: 0.13rem solid #0F0F0F; | ||
border-radius: 15px; | ||
box-sizing: border-box; | ||
color: #0F0F0F; | ||
padding: 1rem; | ||
text-align: center; | ||
text-decoration: none; | ||
transition: all 300ms cubic-bezier(.23, 1, 0.32, 1); | ||
user-select: none; | ||
-webkit-user-select: none; | ||
touch-action: manipulation; | ||
width: 100%; | ||
will-change: transform; | ||
-webkit-box-shadow: 10px 10px 6px 0px rgba(0,255,192,1); | ||
-moz-box-shadow: 10px 10px 6px 0px rgba(0,255,192,1); | ||
box-shadow: 5px 5px 6px 0px rgba(0,255,192,1); | ||
} | ||
|
||
strong { | ||
font-size: 18px; | ||
color: #6b456c; | ||
font-family: "Times New Roman", serif; | ||
|
||
} | ||
/* Stats.css */ | ||
body { | ||
font-family: 'Arial', sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #fff; | ||
} | ||
|
||
.container { | ||
max-width: 800px; | ||
margin: 0 auto; | ||
padding: 1.5rem; | ||
background-color: #fff; | ||
border-radius: 8px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
h2 { | ||
font-size: 2rem; | ||
margin-bottom: 1.5rem; | ||
font-family: 'Arial', sans-serif; | ||
color: #333; | ||
} | ||
|
||
p { | ||
font-size: 1rem; | ||
margin-bottom: 1.5rem; | ||
color: #666; | ||
} | ||
|
||
#usernameInput { | ||
margin-bottom: 2rem; | ||
|
||
} | ||
|
||
#usernameInput input[type="text"] { | ||
width: 100%; | ||
padding: 0.5rem; | ||
font-size: 1rem; | ||
} | ||
|
||
table { | ||
width: 100%; | ||
border: 1px solid rgba(0,255,192,1); | ||
border-radius: 15px; | ||
border-collapse: collapse; | ||
background-color: #f9f9f9; | ||
box-shadow: 5px 5px 6px 0px rgba(0,255,192,1); | ||
} | ||
|
||
table th, | ||
table td { | ||
border: 1px solid rgba(0,255,192,1); | ||
padding: 0.75rem; | ||
text-align: center; | ||
} | ||
|
||
table th { | ||
background-color: #eee; | ||
font-weight: bold; | ||
color: #333; | ||
box-shadow: 5px 5px 6px 0px rgba(0,255,192,1); | ||
} | ||
|
||
table td { | ||
font-size: 1rem; | ||
color: #555; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters