-
Notifications
You must be signed in to change notification settings - Fork 101
158 remove colors file #260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: staging
Are you sure you want to change the base?
Changes from all commits
1027a22
554b82d
5e9ea19
365afa6
b452576
d7e85d9
44dd239
70aaa86
453f762
6b90aa7
d9dc2f7
69caacd
7d18ee8
5c91f5e
aa33921
449fdf3
92e98d0
0891927
55a70a6
d97a360
9fd6b96
109b6e4
756fb05
d80a05d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
@import "../../styles/colors"; | ||
|
||
.socialButton { | ||
user-select: none; | ||
cursor: pointer; | ||
color: white; | ||
font-size: 1.5rem; | ||
border: none; | ||
border-radius: 100%; | ||
padding: 10px 0; | ||
transition: background-color 0.3s cubic-bezier(0.4, 0, 1, 1); | ||
max-height: 36px; | ||
max-width: 36px; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
-webkit-box-sizing: border-box; | ||
-moz-box-sizing: border-box; | ||
box-sizing: border-box; | ||
} | ||
|
||
.telegram { | ||
background-color: $blue-300; | ||
} | ||
|
||
.facebook { | ||
background-color: $blue-200; | ||
} | ||
|
||
.discord { | ||
background-color: $blue-100; | ||
} | ||
|
||
.newsletter { | ||
background-color: $gray-400; | ||
} | ||
|
||
.socialButton:hover { | ||
filter: brightness(1.2); | ||
} | ||
|
||
@media only screen and (max-width: 600px) { | ||
.socialButton { | ||
max-height: 48px; | ||
max-width: 48px; | ||
} | ||
} | ||
|
||
.basicButton { | ||
user-select: none; | ||
cursor: pointer; | ||
color: white; | ||
font-size: 1rem; | ||
border: none; | ||
border-radius: 64px; | ||
background-color: var(--primary); | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
padding: 6px 12px 6px 6px; | ||
transition: all 0.3s; | ||
width: 126px; | ||
height: 36px; | ||
} | ||
|
||
.basicButton:hover { | ||
filter: brightness(1.2); | ||
transform: scale(1.02); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
@import "../../../styles/colors"; | ||
|
||
.listContainer { | ||
display: flex; | ||
flex-direction: row; | ||
|
@@ -14,6 +16,6 @@ | |
align-items: center; | ||
justify-content: center; | ||
font-size: 14px; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should I change this to rem? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes please :) |
||
color: #e2e2e2; | ||
color: $gray-200; | ||
user-select: none; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
$blue-100: #7289da; | ||
$blue-200: #1778f2; | ||
$blue-300: #0088cc; | ||
$blue-500: #0b008e; | ||
$red-200: #ce5a55; | ||
$gray-100: #e8e8e8; | ||
$gray-200: #e2e2e2; | ||
$gray-400: #808080; | ||
$gray-500: #353535; | ||
$gray-600: #292e33; | ||
$gray-700: #242831; | ||
$gray-800: #202529; | ||
$gray-900: #1d1d1d; | ||
// New colors. | ||
$blue-600: #01007d; | ||
$new-gray-100: #fafafb; | ||
$new-gray-200: #e9ebef; | ||
$new-gray-300: #bfc0c3; | ||
$new-gray-400: #5b6375; | ||
$new-gray-500: #39475d; | ||
$new-gray-600: #242831; | ||
$purple-500: #832ec6; | ||
$purple-red-500: linear-gradient(180deg, #01007d 0%, #832ec6 47.92%, #dc665e 100%); | ||
$purple-red-400: linear-gradient( | ||
180deg, | ||
rgba(1, 0, 125, 0.6) 0%, | ||
rgba(131, 46, 198, 0.6) 47.92%, | ||
rgba(220, 102, 94, 0.6) 100% | ||
); | ||
$purple-100: rgba(11, 0, 142, 0.3); | ||
$purple-200: rgba(11, 0, 142, 0.1); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. how can I avoid using opacity? |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should I change this to rem?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes please :)