Skip to content
This repository was archived by the owner on Dec 14, 2023. It is now read-only.

Commit f86adc3

Browse files
committed
Add some styling
1 parent 6c462a6 commit f86adc3

File tree

7 files changed

+246
-179
lines changed

7 files changed

+246
-179
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"moment": "^2.18.1",
3131
"sanitize-html": "^1.15.0",
3232
"uuid": "^3.2.1",
33-
"vee-validate": "^2.0.6",
33+
"vee-validate": "^2.2.7",
3434
"vue": "^2.2.6",
3535
"vue-analytics": "^4.1.3",
3636
"vue-awesome": "^2.3.1",

src/common/base.less

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@
33

44
body {
55
margin: 0;
6-
background: #EEEEEE;
6+
background: #eeeeee;
77
font-family: Lato, Arial, Helvetica, sans-serif;
88
}
99

1010
.cd-select-placeholder {
1111
color: #2f3538;
1212
}
13+
14+
.flow {
15+
margin-bottom: @margin;
16+
}

src/common/styles/cd-events.less

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
@import "../variables";
2+
3+
.cd-event-container {
4+
background: @brand-secondary;
5+
margin: 0 -16px;
6+
padding: 5em 0;
7+
}
8+
9+
.cd-event {
10+
&__section-title {
11+
font-weight: 700;
12+
font-size: 16px;
13+
}
14+
}

src/common/variables.less

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55
@brand-primary: @cd-blue;
66
@light-grey: #7b8082;
77
@side-column-grey: #f4f5f6;
8-
@divider-grey: #CAC4CE;
9-
@link-color: #0093D5;
8+
@divider-grey: #cac4ce;
9+
@link-color: #0093d5;
1010
@link-hover-color: #005e89;
11+
@brand-secondary: @cd-purple;
1112

1213
/* Font sizes */
1314
@font-size-medium: ceil((@font-size-base * 1.1));

0 commit comments

Comments
 (0)