Skip to content

Commit

Permalink
Update window.css
Browse files Browse the repository at this point in the history
  • Loading branch information
nva-sec authored Oct 3, 2024
1 parent 11607bf commit c296174
Showing 1 changed file with 51 additions and 52 deletions.
103 changes: 51 additions & 52 deletions public/styles/window.css
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 */
}

0 comments on commit c296174

Please sign in to comment.