Skip to content

Commit

Permalink
New UI
Browse files Browse the repository at this point in the history
  • Loading branch information
astianmuchui committed May 2, 2024
1 parent c5d773f commit 8325e36
Show file tree
Hide file tree
Showing 19 changed files with 503 additions and 399 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveSassCompile.settings.showOutputWindowOn": "None"
}
56 changes: 43 additions & 13 deletions assets/css/_root.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@import url('https://fonts.googleapis.com/css?family=Poppins');

$primary-color: #b9017c;
$primary-color: lighten(#94226e, 5%);
$navy: #00040e;
$secondary-color: #1d6db4;
$white: #ffffffee;
$secondary-color: #0479a7;
$white: #fff;
$bg: #fcfeffd6;
$black: #111111;
$red: rgb(218, 64, 64);
Expand Down Expand Up @@ -127,6 +127,9 @@ html
border-radius: 5px;
cursor: pointer;
font-size: small;
font-weight: 600;
letter-spacing: 1px;


i
{
Expand Down Expand Up @@ -242,7 +245,7 @@ html

.shadowed
{
box-shadow: inset 1px 1px rgba(255, 255, 255, 0.478), inset -1px -1px rgba(255, 255, 255, 0.132), 1px 3px 24px -1px rgba(0, 0, 0, 0.27);
box-shadow: inset 1px 1px rgba(255, 255, 255, 0.178), inset -1px -1px rgba(255, 255, 255, 0.132), 1px 3px 24px -1px rgba(0, 0, 0, 0.17);
}
.btn-round
{
Expand Down Expand Up @@ -279,6 +282,31 @@ html
}
}

.btn-black
{
background-color: $black;
color: white;
letter-spacing: 1px;
border: none;
padding: 10px 20px;
border-radius: 10px;
cursor: pointer;
transition: all 1s ease-in;

i
{
margin-right: 5px;
margin-left: 5px;
}

&:hover
{
background-color: transparent;
border: 2px solid $black;
color: $black;
}
}

.btn-transparent-secondary
{
background-color: transparent;
Expand Down Expand Up @@ -330,7 +358,7 @@ html
}
.btn-gradient
{
background: linear-gradient(to bottom, lighten($secondary-color, 60), lighten($secondary-color, 10));
background: linear-gradient(to right, lighten($primary-color, 6), lighten($secondary-color, 10));

color: white;
letter-spacing: 1px;
Expand All @@ -348,9 +376,7 @@ html

&:hover
{
background: linear-gradient(to top, lighten($secondary-color, 60), lighten($secondary-color, 10));


background: linear-gradient(to left, lighten($primary-color, 6), lighten($secondary-color, 10));

}
}
Expand Down Expand Up @@ -493,18 +519,21 @@ html

.border-primary
{
height: 1px;
height: 2px;
width: 100px;
background-color: #117dc5;
background-color: $primary-color;
padding: 0;
border-radius: 50px;
margin-bottom: 20px;
}

.border-secondary
{
height: 1px;
height: 2px;
width: 100px;
background-color: #cfe5fe;
background-color: $secondary-color;
margin-bottom: 20px;

}

.border-white
Expand All @@ -516,9 +545,10 @@ html

.border-black
{
height: 1px;
height: 2px;
width: 100px;
background-color: #111111;
margin-bottom: 20px;
}

.txt-caps
Expand Down
Loading

0 comments on commit 8325e36

Please sign in to comment.