Skip to content

Commit e645b6b

Browse files
updated variables for forms
1 parent 9c63eb8 commit e645b6b

File tree

3 files changed

+6217
-14
lines changed

3 files changed

+6217
-14
lines changed

dist/css/styles.min.css

+6,193-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/styles.min.css.map

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scss/variables.scss

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

1716
/*
1817
Theme colors
@@ -22,7 +21,6 @@ $theme02: #093142; // Royal blue
2221
$theme03: #12637F; // Falcon blue
2322
$theme04: #FFC200; // Royal yellow
2423
$theme05: #FFFFFF; // Destroyer white
25-
$theme06: #164558;
2624

2725
/*
2826
Notification colors
@@ -99,7 +97,7 @@ $grid-gutter-b3: 12px;
9997
$grid-gutter-b4: 12px;
10098
$grid-gutter-b5: 12px;
10199
$grid-gutter-b6: 12px;
102-
100+
103101
/*
104102
Default margin and padding
105103
*/
@@ -110,22 +108,34 @@ $margin-default: 12px;
110108
/*
111109
Standard border-radius
112110
*/
113-
$radius: 3px;
111+
$radius: 5px;
114112

115113
/*
116114
Fonts
117115
*/
118-
$font-pri: 'Open Sans', Helvetica, Arial;
119-
$font-sec: 'Open Sans', Helvetica, Arial;
116+
$font-pri: Arial, Helvetica, sans-serif;
117+
$font-sec: Arial, Helvetica, sans-serif;
120118
$font-size-default: 1.6rem;
121119
$line-height-default: 1.5;
122120

123121
/* Breadcrumbs seperator */
124122
$breadcrumbs-separator: '\00bb';
125123

126124
/* Form specific variables */
127-
$input-height: 48px;
125+
$input-height: 4.8rem;
126+
127+
$input-label-color: #aaa;
128+
$input-label-color-focus: #aaa;
129+
128130
$input-border-color: #eee;
129131
$input-border-color-focus: #eee;
132+
133+
$input-control-color: #eee;
134+
$input-control-color-focus: $theme01;
135+
130136
$input-border: 1px solid $input-border-color;
131-
$input-transition: 0.1s ease-in-out;
137+
138+
$input-transition: 0.1s ease-in-out;
139+
140+
$input-icon-color: #eee;
141+
$input-icon-bg-color: #797979;

0 commit comments

Comments
 (0)