Skip to content

Commit da7b509

Browse files
styling
1 parent e645b6b commit da7b509

File tree

3 files changed

+93
-43
lines changed

3 files changed

+93
-43
lines changed

dist/css/styles.min.css

Lines changed: 66 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/styles.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scss/variables.scss

Lines changed: 26 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99
Base colors
1010
Color 01 and 02 reservered for white and black
1111
*/
12-
$color01: #fff;
13-
$color02: #000;
14-
$color03: #eeeeee;
12+
$color03: #eeeeee;
13+
$color04: #aaa;
14+
$color05: #ccc;
15+
$color06: #797979;
1516

1617
/*
1718
Theme colors
@@ -21,6 +22,7 @@ $theme02: #093142; // Royal blue
2122
$theme03: #12637F; // Falcon blue
2223
$theme04: #FFC200; // Royal yellow
2324
$theme05: #FFFFFF; // Destroyer white
25+
$theme06: #164558;
2426

2527
/*
2628
Notification colors
@@ -97,7 +99,7 @@ $grid-gutter-b3: 12px;
9799
$grid-gutter-b4: 12px;
98100
$grid-gutter-b5: 12px;
99101
$grid-gutter-b6: 12px;
100-
102+
101103
/*
102104
Default margin and padding
103105
*/
@@ -108,34 +110,45 @@ $margin-default: 12px;
108110
/*
109111
Standard border-radius
110112
*/
111-
$radius: 5px;
113+
$radius: 3px;
112114

113115
/*
114116
Fonts
115117
*/
116-
$font-pri: Arial, Helvetica, sans-serif;
117-
$font-sec: Arial, Helvetica, sans-serif;
118+
$font-pri: 'Open Sans', Helvetica, Arial;
119+
$font-sec: 'Open Sans', Helvetica, Arial;
118120
$font-size-default: 1.6rem;
119121
$line-height-default: 1.5;
120122

121123
/* Breadcrumbs seperator */
122124
$breadcrumbs-separator: '\00bb';
123125

124126
/* Form specific variables */
127+
128+
/* Standard Inputs */
125129
$input-height: 4.8rem;
130+
$input-bg-color: $color01;
131+
$input-bg-color-focus: $color01;
132+
$input-color: $color02;
133+
$input-color-focus: $color02;
134+
$input-border-color: #eee;
135+
$input-border-color-focus: #eee;
136+
$input-border: 1px solid $input-border-color;
137+
138+
/* Custom select */
139+
// $select-arrow: "\2039";
126140

141+
/* Labels */
127142
$input-label-color: #aaa;
128143
$input-label-color-focus: #aaa;
129144

130-
$input-border-color: #eee;
131-
$input-border-color-focus: #eee;
132-
145+
/* Radios and Checkboxes*/
133146
$input-control-color: #eee;
134147
$input-control-color-focus: $theme01;
135148

136-
$input-border: 1px solid $input-border-color;
137-
138-
$input-transition: 0.1s ease-in-out;
149+
/* Form transitions */
150+
$input-transition: .1s all ease-in-out;
139151

152+
/* Icons */
140153
$input-icon-color: #eee;
141154
$input-icon-bg-color: #797979;

0 commit comments

Comments
 (0)