-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from The-True-Hooha/dev
base model: working
- Loading branch information
Showing
12 changed files
with
499 additions
and
75 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
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
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
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 |
---|---|---|
@@ -0,0 +1,159 @@ | ||
:root { | ||
--primary-color: #008080; | ||
--secondary-color: #2c3e50; | ||
--background-color: #ecf0f1; | ||
--text-color: #333; | ||
--error-color: #e74c3c; | ||
--success-color: #2ecc71; | ||
--border-radius: 8px; | ||
--box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | ||
--transition: all 0.3s ease; | ||
} | ||
|
||
* { | ||
box-sizing: border-box; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
body { | ||
font-family: 'Inter', sans-serif; | ||
background-color: var(--background-color); | ||
color: var(--text-color); | ||
line-height: 1.6; | ||
} | ||
|
||
.auth-container { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
min-height: 100vh; | ||
padding: 20px; | ||
} | ||
|
||
.auth-content { | ||
background-color: white; | ||
border-radius: var(--border-radius); | ||
box-shadow: var(--box-shadow); | ||
width: 100%; | ||
max-width: 400px; | ||
padding: 2rem; | ||
} | ||
|
||
.auth-title { | ||
text-align: center; | ||
color: var(--secondary-color); | ||
margin-bottom: 1.5rem; | ||
font-size: 2rem; | ||
} | ||
|
||
.tabs { | ||
display: flex; | ||
justify-content: center; | ||
margin-bottom: 1.5rem; | ||
} | ||
|
||
.tab { | ||
background-color: transparent; | ||
border: none; | ||
color: var(--text-color); | ||
cursor: pointer; | ||
font-size: 1rem; | ||
font-weight: 500; | ||
padding: 0.5rem 1rem; | ||
transition: var(--transition); | ||
} | ||
|
||
.tab.active { | ||
color: var(--primary-color); | ||
border-bottom: 2px solid var(--primary-color); | ||
} | ||
|
||
.tab-content { | ||
display: none; | ||
} | ||
|
||
.tab-content.active { | ||
display: block; | ||
} | ||
|
||
.form-group { | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.input-field { | ||
width: 100%; | ||
padding: 0.75rem; | ||
border: 1px solid #ddd; | ||
border-radius: var(--border-radius); | ||
font-size: 1rem; | ||
transition: var(--transition); | ||
} | ||
|
||
.input-field:focus { | ||
outline: none; | ||
border-color: var(--primary-color); | ||
box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2); | ||
} | ||
|
||
.submit-button { | ||
width: 100%; | ||
padding: 0.75rem; | ||
background-color: var(--primary-color); | ||
color: white; | ||
border: none; | ||
border-radius: var(--border-radius); | ||
font-size: 1rem; | ||
font-weight: 500; | ||
cursor: pointer; | ||
transition: var(--transition); | ||
} | ||
|
||
.submit-button:hover { | ||
background-color: #2980b9; | ||
} | ||
|
||
.form-message { | ||
margin-top: 1rem; | ||
text-align: center; | ||
font-size: 0.9rem; | ||
color: var(--error-color); | ||
} | ||
|
||
.form-message.error { | ||
color: var(--error-color); | ||
} | ||
|
||
.form-message.success { | ||
color: var(--success-color); | ||
} | ||
|
||
.sr-only { | ||
position: absolute; | ||
width: 1px; | ||
height: 1px; | ||
padding: 0; | ||
margin: -1px; | ||
overflow: hidden; | ||
clip: rect(0, 0, 0, 0); | ||
white-space: nowrap; | ||
border-width: 0; | ||
} | ||
|
||
@media (max-width: 480px) { | ||
.auth-content { | ||
padding: 1.5rem; | ||
} | ||
|
||
.auth-title { | ||
font-size: 1.5rem; | ||
} | ||
|
||
.tab { | ||
font-size: 0.9rem; | ||
} | ||
|
||
.input-field, .submit-button { | ||
font-size: 0.9rem; | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
.domain-table { | ||
width: 100%; | ||
border-collapse: collapse; | ||
margin-top: 20px; | ||
} | ||
|
||
.domain-table th, .domain-table td { | ||
border: 1px solid #ddd; | ||
padding: 12px; | ||
text-align: left; | ||
} | ||
|
||
.domain-table th { | ||
background-color: #f2f2f2; | ||
font-weight: bold; | ||
} | ||
|
||
.domain-table tr:nth-child(even) { | ||
background-color: #f9f9f9; | ||
} | ||
|
||
.domain-table tr:hover { | ||
background-color: #f5f5f5; | ||
} | ||
|
||
.view-btn, .delete-btn { | ||
padding: 5px 10px; | ||
margin-right: 5px; | ||
border: none; | ||
border-radius: 3px; | ||
cursor: pointer; | ||
} | ||
|
||
.view-btn { | ||
background-color: #4CAF50; | ||
color: white; | ||
} | ||
|
||
.delete-btn { | ||
background-color: #f44336; | ||
color: white; | ||
} | ||
|
||
.view-btn:hover, .delete-btn:hover { | ||
opacity: 0.8; | ||
} |
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
Oops, something went wrong.