|
1 |
| - |
2 |
| - |
3 |
| -$orange1 : #EE5B32; |
4 |
| -$orange2 : #e25803; |
5 |
| -$orange3: #FB7928; |
| 1 | +//Color Variables |
| 2 | +$pumpkin: #e15803; |
| 3 | +$orange: #FB7928; |
| 4 | +$candy: #EE5B32; |
| 5 | +$jet-black: #333333; |
| 6 | +$grey: rgba(255, 255, 255, 0.6); |
6 | 7 | $blue: #00b5da;
|
7 |
| -$light_grey: rgba(255, 255, 255, 0.6); |
8 | 8 | $white: #fff;
|
9 |
| -$grey: #333333; |
10 | 9 |
|
| 10 | +//Color Configs |
| 11 | +$brand-theme: $candy; |
| 12 | +$brand-theme-dark: $pumpkin; |
| 13 | +$brand-theme-light: $orange; |
11 | 14 |
|
| 15 | +$text-color: $jet-black; |
| 16 | +$project-card-theme: $blue; |
12 | 17 |
|
13 | 18 | body {
|
14 | 19 | font-family: 'Source Sans Pro', sans-serif;
|
15 |
| - color: $grey; |
| 20 | + color: $text-color; |
16 | 21 | }
|
17 | 22 |
|
18 | 23 | h2 {
|
|
48 | 53 | }
|
49 | 54 |
|
50 | 55 | .main-header {
|
51 |
| - background-color: $orange1; |
| 56 | + background-color: $brand-theme; |
52 | 57 | }
|
53 | 58 |
|
54 | 59 | .navbar {
|
55 | 60 | background: {
|
56 |
| - image: linear-gradient(90deg, $orange1, $orange3 , $orange1); |
| 61 | + image: linear-gradient(90deg, $brand-theme, $brand-theme-light , $brand-theme); |
57 | 62 | size: 100% 130px;
|
58 | 63 | position-y: bottom;
|
59 | 64 | }
|
|
63 | 68 | background-color: $white;
|
64 | 69 | border: {
|
65 | 70 | bottom-style: solid;
|
66 |
| - color: $orange1; |
| 71 | + color: $brand-theme; |
67 | 72 | width: 10px;
|
68 | 73 | }
|
69 | 74 | padding-left: 0px;
|
70 | 75 | font-weight: 600;
|
71 |
| - color: $grey; |
| 76 | + color: $text-color; |
72 | 77 | }
|
73 | 78 |
|
74 | 79 | @mixin style {
|
75 |
| - background-orange3: $white; |
| 80 | + background-color: $white; |
76 | 81 | border: {
|
77 |
| - left-orange3: $blue !important; |
| 82 | + left-color: $project-card-theme !important; |
78 | 83 | left-width: 10px;
|
79 | 84 | }
|
80 | 85 | padding-left: 0px;
|
81 | 86 | }
|
82 | 87 |
|
83 |
| -.featuorange1-project-card { |
| 88 | +.featured-project-card { |
84 | 89 | @include style();
|
85 | 90 | min-width: 20rem;
|
86 | 91 | max-width: 20rem;
|
|
92 | 97 | }
|
93 | 98 |
|
94 | 99 | .badge-featured-project {
|
95 |
| - background-color: $blue; |
| 100 | + background-color: $project-card-theme; |
96 | 101 | color: $white;
|
97 | 102 | font-size: 0.8rem;
|
98 | 103 | }
|
@@ -121,20 +126,20 @@ h2 {
|
121 | 126 | }
|
122 | 127 |
|
123 | 128 | .nav-item:hover {
|
124 |
| - background: $orange2 !important; |
| 129 | + background: $brand-theme-dark !important; |
125 | 130 | }
|
126 | 131 |
|
127 | 132 | .navbar-dark {
|
128 | 133 | .navbar-nav .nav-item .nav-link {
|
129 |
| - color: white; |
| 134 | + color: $white; |
130 | 135 | line-height: 1rem;
|
131 |
| - border-left: 1px solid $light_grey; |
| 136 | + border-left: 1px solid $grey; |
132 | 137 | }
|
133 | 138 | .navbar-toggler {
|
134 | 139 | border-color: $white;
|
135 | 140 | }
|
136 | 141 | .navbar-nav .nav-item.active .nav-link {
|
137 |
| - background: $orange2 !important; |
| 142 | + background: $brand-theme-dark !important; |
138 | 143 | }
|
139 | 144 | }
|
140 | 145 |
|
|
0 commit comments