diff options
Diffstat (limited to 'app/src/styles')
-rw-r--r-- | app/src/styles/Dashboard.module.css | 74 | ||||
-rw-r--r-- | app/src/styles/Login.module.css | 87 |
2 files changed, 161 insertions, 0 deletions
diff --git a/app/src/styles/Dashboard.module.css b/app/src/styles/Dashboard.module.css new file mode 100644 index 0000000..042a2f1 --- /dev/null +++ b/app/src/styles/Dashboard.module.css @@ -0,0 +1,74 @@ +body { + margin: 0; + padding: 0; + font-family: Arial, sans-serif; + background-color: #2c3338; +} + +#container { + display: flex; + justify-content: center; + margin-top: 100px; +} + + +table { + margin: 20px 0 20px 0; + text-align: center; + font-size: 25px; + width: 1000px; + color: #ccc; + border-collapse: collapse; + overflow: hidden; +} + +/* Center all sub tables */ +.log-table-row table { + margin: 0 auto; +} + +.log-table-row table { + width: 90%; +} + +table th { + background-color: #415eac; + border: 2px solid #ccc; + padding: 10px; +} + +.link-table-row { + border: 2px solid #ccc; +} + +table td { + padding: 10px; +} + +.link-table-row td { + padding: 20px; +} + +.log-table-row table td { + background-color: #3b4148; + padding: 10px; +} + +.log-table-row table tr { + border: 2px solid #ccc; +} + +.link-button { + background-color: #3b4148; + color: #ccc; + border: none; + padding: 10px; + cursor: pointer; + font-size: 25px; + border-radius: 5px; +} + +.fa-trash:hover { + color: rgb(238, 86, 86); + cursor: pointer; +}
\ No newline at end of file diff --git a/app/src/styles/Login.module.css b/app/src/styles/Login.module.css new file mode 100644 index 0000000..b2bcddf --- /dev/null +++ b/app/src/styles/Login.module.css @@ -0,0 +1,87 @@ +body { + margin: 0; + padding: 0; + font-family: Arial, sans-serif; + background-color: #2c3338; +} + +#container { + font-size: 17px; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + text-align: center; +} + +#loginText, +#signupText { + color: #ccc; + font-size: 30px; + font-weight: 600; + border: 2px solid #606468; + padding: 10px; + border-radius: 5px; + margin: 0 auto; +} + +input { + display: block; + margin: 10px auto; + width: 300px; + border-radius: 5px; + padding: 15px; + color: #ccc; + background-color: #3b4148; + border: none; + font-size: 17px; +} + +button { + display: block; + margin: 10px auto; + width: 100%; + border-radius: 5px; + padding: 15px; + color: #ccc; + background-color: #415eac; + border: none; + font-size: 17px; + cursor: pointer; + transition: background-color 0.2s ease, transform 0.3s ease; +} + +button:hover { + background-color: #2e4781; +} + +button:active { + transform: scale(0.95); +} + +#error { + color: #ee6161; +} + +.link { + text-decoration: underline; + color: #ccc; + +} + +.link:hover { + text-decoration: none; + color: #415eac; +} + +#bottomText { + color: #606468; +} + +.visible { + visibility: visible; +} + +.hidden { + visibility: hidden; +}
\ No newline at end of file |