Skip to content
This repository was archived by the owner on Oct 19, 2022. It is now read-only.

Commit 338e1e0

Browse files
author
Jos Poortvliet
authored
Merge pull request #285 from nextcloud/overwall-style-refresh
[WIP/NI] Overwall style refresh
2 parents b619f6c + 2bb0fb3 commit 338e1e0

43 files changed

Lines changed: 1209 additions & 214 deletions

Some content is hidden

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

assets/css/_helpers.scss

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/// Block Element
2+
/// @access public
3+
/// @param {String} $element - Element's name
4+
@mixin element($element) {
5+
&__#{$element} {
6+
@content;
7+
}
8+
}
9+
10+
/// Block Modifier
11+
/// @access public
12+
/// @param {String} $modifier - Modifier's name
13+
@mixin modifier($modifier) {
14+
&--#{$modifier} {
15+
@content;
16+
}
17+
}

assets/css/_variables.scss

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
1+
/*Colors*/
12
$dark-blue: #2a2a36;
23
$medium-blue: #0073B2;
34
$nextcloud-blue: #0082c9;
5+
$light-grey: #f1f1f1;
46
$medium-grey: #555555;
57
$white: #ffffff;
68
$orange: #FF8B00;
7-
$font-stack: 'Open Sans', Frutiger, Calibri, 'Myriad Pro', Myriad, sans-serif !important;
9+
10+
/*Shadows*/
11+
$elevation-shadow-1: 0 2px 4px 0 rgba(0, 0, 0, 0.11);
12+
13+
14+
$font-stack: 'Open Sans', Frutiger, Calibri, 'Myriad Pro', Myriad, sans-serif;
15+
16+
/*Breakpoints*/
817
$break-small: 768px;
918
$break-big: 991px;
1019
$very-wide: 1600px;

assets/css/box.css

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

assets/css/box.css.map

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

assets/css/box.scss

Lines changed: 6 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@
3636
}
3737

3838
p {
39-
font-size: 18px;
40-
font-weight: 300;
41-
max-width: 600px;
4239
padding-top: 20px;
4340
margin: 0 auto;
4441
}
@@ -78,7 +75,6 @@
7875
}
7976

8077
.section-getbox {
81-
padding-top: 100px;
8278
height: 440px;
8379
width: 100%;
8480
background-color: #252323;
@@ -89,8 +85,8 @@
8985
.wrapper-text {
9086
max-width: 550px;
9187
color:white;
92-
z-index: 50;
93-
@include vertical-center;
88+
padding-top: 40px;
89+
9490
h2 {
9591
color: white;
9692
}
@@ -114,11 +110,7 @@
114110
height: 485px;
115111
background-repeat: no-repeat;
116112
float: right;
117-
margin-top: -220px;
118-
}
119-
120-
.dropdown-menu {
121-
z-index: 1000;
113+
margin-top: -130px;
122114
}
123115
}
124116
}
@@ -134,7 +126,6 @@
134126
p {
135127
font-size: 18px;
136128
font-weight: 300;
137-
max-width: 550px;
138129
margin: 0 auto;
139130
margin-top: 10px;
140131
text-align: center;
@@ -171,7 +162,6 @@
171162
p {
172163
font-size: 18px;
173164
font-weight: 300;
174-
max-width: 650px;
175165
margin: 0 auto;
176166
margin-top: 10px;
177167
}
@@ -207,7 +197,6 @@
207197
p {
208198
font-size: 18px;
209199
font-weight: 300;
210-
max-width: 650px;
211200
margin: 0 auto;
212201
margin-top: 10px;
213202
}
@@ -390,12 +379,12 @@
390379
.container {
391380
padding-top: 30px;
392381

393-
.wrapper-buttons {
382+
.col-xs-8 .wrapper-buttons {
394383
text-align: center;
395384
margin-top: 50px;
396385

397-
p {
398-
margin-bottom: 45px;
386+
.button {
387+
margin: 0, 15px;
399388
}
400389
}
401390
}

assets/css/buy.css

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

0 commit comments

Comments
 (0)