-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
96 lines (85 loc) · 1.56 KB
/
style.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// Override default variables before the import
// $body-bg: #000;
// $primary: yellow;
$info: #3cb4ab;
@import "~bootstrap/scss/bootstrap.scss";
$font-stack: "Commissioner", sans-serif;
$primary-color: #3cb4ab;
$hover-color: #157a74;
$paragraph-color: #959595;
@mixin selectRewardBtn {
width: 156px;
height: 50px;
border-radius: 24px;
border: none;
color: #e1fbfb;
background: $primary-color;
font-family: $font-stack;
font-weight: 700;
cursor: pointer;
&:hover {
background: $hover-color;
}
}
@mixin pledgeButton {
width: 114px;
height: 44px;
border-radius: 30px;
background-color: $primary-color;
color: #e1fbfb;
border: none;
font-weight: 500;
&:hover {
background-color: $hover-color;
}
@media (min-width: 1440px) {
width: 108px;
}
}
@mixin pledgeDescription {
color: $paragraph-color;
margin-bottom: 14px;
line-height: 24px;
@media (min-width: 992px) {
font-size: 15px;
line-height: 28px;
margin-bottom: 8px;
}
@media (min-width: 1440px) {
padding-left: 50px;
}
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: $font-stack;
// background-color: #0e0e0e;
display: flex;
justify-content: center;
width: 100%;
}
#root {
width: 100%;
}
.modal-dialog {
max-width: 326px;
margin: 0 auto;
@media (min-width: 992px) {
max-width: 528px;
}
@media (min-width: 1440px) {
max-width: 732px;
}
}
.modal-content {
border-radius: 10px;
margin-bottom: 130px;
@media (min-width: 1440px) {
margin-bottom: 275px;
}
}
.progress-bar {
border-radius: 14px;
}