-
Notifications
You must be signed in to change notification settings - Fork 94
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
1 changed file
with
51 additions
and
52 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,112 +1,111 @@ | ||
body, | ||
html { | ||
background: none; | ||
padding: 5px; | ||
overflow: scroll; | ||
font-family: var(--font-family); | ||
color: var(--text-color); | ||
overflow-x: hidden; | ||
scroll-behavior: smooth; | ||
position: relative; | ||
height: calc(100% - 2.5px); | ||
box-sizing: border-box; | ||
background: transparent!important; | ||
background: #1C1C2B; /* Set the background color */ | ||
padding: 5px; | ||
overflow: scroll; | ||
font-family: var(--font-family); | ||
color: var(--text-color); | ||
overflow-x: hidden; | ||
scroll-behavior: smooth; | ||
position: relative; | ||
height: calc(100% - 2.5px); | ||
box-sizing: border-box; | ||
} | ||
|
||
*, *:before, *:after { | ||
box-sizing: inherit; | ||
color: var(--text-color); | ||
font-family: var(--font-family); | ||
box-sizing: inherit; | ||
color: var(--text-color); | ||
font-family: var(--font-family); | ||
} | ||
|
||
input, | ||
textarea, | ||
form button, | ||
select { | ||
padding: 5px 10px; | ||
border: none; | ||
background: var(--surface-bg); | ||
border-radius: 5px; | ||
width: 100%; | ||
margin: 5px 0; | ||
font-family: var(--font-family); | ||
color: var(--text-color); | ||
padding: 5px 10px; | ||
border: none; | ||
background: var(--surface-bg); | ||
border-radius: 5px; | ||
width: 100%; | ||
margin: 5px 0; | ||
font-family: var(--font-family); | ||
color: var(--text-color); | ||
} | ||
|
||
button, | ||
input::file-selector-button { | ||
padding: 5px; | ||
border: none; | ||
background: var(--surface-bg); | ||
border-radius: 5px; | ||
font-family: var(--font-family); | ||
color: var(--text-color); | ||
cursor: pointer; | ||
padding: 5px; | ||
border: none; | ||
background: var(--surface-bg); | ||
border-radius: 5px; | ||
font-family: var(--font-family); | ||
color: var(--text-color); | ||
cursor: pointer; | ||
} | ||
|
||
textarea { | ||
resize: none; | ||
height: 100px; | ||
resize: none; | ||
height: 100px; | ||
} | ||
|
||
input:focus, | ||
textarea:focus, | ||
button:focus, | ||
select:focus { | ||
outline: none; | ||
outline: none; | ||
} | ||
|
||
button:hover, | ||
select:hover, | ||
a:hover { | ||
color: var(--primary); | ||
color: var(--primary); | ||
} | ||
|
||
input::file-selector-button { | ||
margin: 5px 0; | ||
margin-right: 10px; | ||
font-family: var(--font-family); | ||
color: var(--text-color); | ||
background: var(--window-bg); | ||
margin: 5px 0; | ||
margin-right: 10px; | ||
font-family: var(--font-family); | ||
color: var(--text-color); | ||
background: var(--window-bg); | ||
} | ||
|
||
input::file-selector-button:hover { | ||
color: var(--primary); | ||
color: var(--primary); | ||
} | ||
|
||
sub { | ||
opacity: 0.5; | ||
opacity: 0.5; | ||
} | ||
|
||
table, | ||
th, | ||
td { | ||
border: 1px solid; | ||
border: 1px solid; | ||
} | ||
|
||
th, | ||
td { | ||
padding: 5px; | ||
padding: 5px; | ||
} | ||
|
||
.profile { | ||
border-radius: 100%; | ||
border-radius: 100%; | ||
} | ||
|
||
.center { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
} | ||
|
||
/* Hide scrollbar for Chrome, Safari and Opera */ | ||
*::-webkit-scrollbar { | ||
display: none; | ||
display: none; | ||
} | ||
|
||
/* Hide scrollbar for IE, Edge and Firefox */ | ||
/* Hide scrollbar for IE, Edge and Firefox */ | ||
* { | ||
-ms-overflow-style: none; /* IE and Edge */ | ||
scrollbar-width: none; /* Firefox */ | ||
} | ||
-ms-overflow-style: none; /* IE and Edge */ | ||
scrollbar-width: none; /* Firefox */ | ||
} |