Skip to content

Commit

Permalink
thick-border
Browse files Browse the repository at this point in the history
  • Loading branch information
AB10110F committed Jan 4, 2024
1 parent cd732f6 commit bee57c5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/css/marquee.module.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.header
{
border: 1px solid rgb(255,255,255);
border: 2px solid rgb(255,255,255);
overflow-x: hidden;
display: flex;
align-items: center;
Expand Down Expand Up @@ -41,7 +41,7 @@
{
.header
{
height: 9vh;
height: 11vh;
}
.header>h1
{
Expand Down
10 changes: 5 additions & 5 deletions src/css/page.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
flex-direction: column;
justify-content: center;
color: white;
padding: 30px;
padding: 30px 30px 25px 30px;
}

.grid
Expand All @@ -20,15 +20,15 @@
{
display: flex;
flex-direction: column;
gap:25px;
gap: 25px;
width: 35%;
}

.languageContainer
{
display: flex;
flex-direction: row;
border: 1px solid rgb(255, 255, 255);
border: 2px solid rgb(255, 255, 255);
height: 40%;
animation: right 1s ease;
}
Expand All @@ -41,7 +41,7 @@

.bars
{
border: 1px solid rgb(255, 255, 255);
border: 2px solid rgb(255, 255, 255);
height: 40%;
animation: right 1.5s ease;
display: flex;
Expand All @@ -51,7 +51,7 @@

.crtSwitch
{
border: 1px solid rgb(255, 255, 255);
border: 2px solid rgb(255, 255, 255);
height: 20%;
display: flex;
justify-content: center;
Expand Down
4 changes: 2 additions & 2 deletions src/css/switch.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
background-color: rgb(0, 0, 0);
mask-image: radial-gradient(rgba(120, 120, 120, 1) 30%, rgb(60, 60, 60, 0.4) 52%);
background-image: linear-gradient(0deg, rgb(60, 60, 60) 50%, rgb(220, 220, 220) 50%);
background-size: 1.5% 1.5%;
background-size: 1.2% 1.2%;
animation: flicker 100ms infinite;
pointer-events: none;
}
Expand Down Expand Up @@ -96,7 +96,7 @@

@keyframes flicker {
0% {
transform: translateY(1px);
transform: translateY(2px);
}
100% {
transform: translateY(0px);
Expand Down
2 changes: 1 addition & 1 deletion src/css/terminal.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
overflow-X:hidden;
color: white;
font-size: 3vh;
border: 1px solid rgb(255, 255, 255);
border: 2px solid rgb(255, 255, 255);
}

.terminal__history
Expand Down

0 comments on commit bee57c5

Please sign in to comment.