Skip to content

Commit 506df24

Browse files
committed
[WIP] Update branding / L&F for Isle of Ruby 2018
1 parent 9fc0b7f commit 506df24

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+2402
-1413
lines changed

app/assets/images/hero/IoR_illustration.svg

Lines changed: 1 addition & 0 deletions
Loading

app/assets/images/hero/IoR_text.svg

Lines changed: 1 addition & 0 deletions
Loading

app/assets/images/layout/bg.png

58.2 KB
Loading

app/assets/stylesheets/_base.sass

Lines changed: 0 additions & 69 deletions
This file was deleted.

app/assets/stylesheets/_base.scss

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
body {
2+
background-image: image-url('layout/bg.png');
3+
background-size: 20vh;
4+
}
5+
6+
7+
.page-section {
8+
&__wrapper {
9+
width: 100vw;
10+
min-height: calc(100vh - 50px);
11+
display: flex;
12+
flex-direction: column;
13+
flex-wrap: wrap;
14+
align-content: center;
15+
align-items: stretch;
16+
@media (min-width: $mobile-tablet-landscape){
17+
flex-direction: row;
18+
justify-content: space-between;
19+
}
20+
@media (min-width: $desktop-medium) {
21+
max-width: $desktop-medium;
22+
margin: 0 auto;
23+
}
24+
}
25+
26+
&__image {
27+
text-align: center;
28+
padding: 2rem 0;
29+
@media (min-width: $mobile-tablet-landscape){
30+
display: flex;
31+
align-content: center;
32+
padding: 0;
33+
flex-wrap: wrap;
34+
justify-content: space-between;
35+
width: 10vw;
36+
align-items: stretch;
37+
}
38+
.page-section__image--horizontal {
39+
max-width: 90%;
40+
@media (min-width: $mobile-tablet-portrait) {
41+
max-width: 60%;
42+
}
43+
@media (min-width: $mobile-tablet-landscape){
44+
display: none;
45+
}
46+
}
47+
.page-section__image--vertical {
48+
width: 70%;
49+
display: none;
50+
align-self: flex-start;
51+
padding: 8rem 0 4rem; // same as inner
52+
@media (min-width: $mobile-tablet-landscape){
53+
display: block;
54+
}
55+
}
56+
}
57+
58+
&__inner {
59+
width: 100vw;
60+
padding: 2rem;
61+
@media (min-width: $mobile-tablet-landscape){
62+
width: 90vw;
63+
max-width: 1000px;
64+
padding: 8rem 2rem 5rem;
65+
}
66+
}
67+
}
68+
69+
.page-section--sub-page {
70+
.page-section__image {
71+
@media (max-width: $mobile-tablet-landscape){
72+
margin-top: 140px; //page-header-mobile-sky height
73+
}
74+
}
75+
}

app/assets/stylesheets/_fonts.scss

Whitespace-only changes.

app/assets/stylesheets/_pickadate_overrides.sass

Lines changed: 0 additions & 50 deletions
This file was deleted.

app/assets/stylesheets/_settings.sass

Lines changed: 0 additions & 41 deletions
This file was deleted.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// Colours
2+
$light-blue: #CEEBFB;
3+
$mid-blue: #A3D6F5;
4+
$dark-blue: #66A7C5;
5+
$red: #EE3233;
6+
$light-grey: #F0ECEB;
7+
$dark-grey: #6C7476;

app/assets/stylesheets/_utils.sass

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)