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

Commit 874f53c

Browse files
committed
Updated general header color overlay styling and slideshow color overlay styling
1 parent 2b874b0 commit 874f53c

11 files changed

+38
-18
lines changed

sites/all/themes/osto_web/css/global.css

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

sites/all/themes/osto_web/css/osto-web-alpha-default-narrow.css

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

sites/all/themes/osto_web/css/osto-web-alpha-default-normal.css

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

sites/all/themes/osto_web/css/osto-web-alpha-default.css

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

sites/all/themes/osto_web/scss/global.scss

+5-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,11 @@ img {
6565
background: $gray-lightest;
6666
}
6767
#zone-header-wrapper {
68-
background: linear-gradient(to right, $blue 0%,$blue 35%,rgba(10,112,227,0.7) 50%,$blue 65%,$blue 100%),url("../img/header-bg.png");
69-
background-size: auto 293px;
68+
//background: linear-gradient(to right, $blue 0%,$blue 35%,rgba(10,112,227,0.7) 50%,$blue 65%,$blue 100%),url("../img/header-bg.png");
69+
background: url("../img/header-bg_2.png");
70+
background-color: $gray-light;
71+
//background-size: auto 293px;
72+
background-size: auto 100%;
7073
background-repeat: no-repeat;
7174
background-position-y: center;
7275
background-position-x: center;

sites/all/themes/osto_web/scss/osto-web-alpha-default-narrow.scss

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
* apply to the normal and widescreen layouts. You may override these styles in the normal
66
* and widescreen CSS files as appropriate. */
77

8+
#zone-header-wrapper {
9+
background-size: 100%;
10+
}
11+
812
/*
913
==========================================================================
1014
Specific Pages
@@ -145,7 +149,7 @@
145149
}
146150
}
147151
.background-overlay {
148-
background: linear-gradient(to right, $blue 0%,$blue 10%,rgba(10,112,227,0.5) 50%,$blue 90%,$blue 100%);
152+
//background: linear-gradient(to right, $blue 0%,$blue 10%,rgba(10,112,227,0.5) 50%,$blue 90%,$blue 100%);
149153
height: 100%;
150154
width: 100%;
151155
position: absolute;

sites/all/themes/osto_web/scss/osto-web-alpha-default-normal.scss

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
/* This file will hold styles that are loaded using the same media query as the normal grid. */
44
/* If you are using the default media queries provided by Omega, these styles will also
55
* apply to the widescreen layout unless they are overridden by the widescreen styles. */
6-
6+
7+
#zone-header-wrapper {
8+
background-size: 100%;
9+
}
10+
711
/*
812
==========================================================================
913
Views

sites/all/themes/osto_web/scss/osto-web-alpha-default.scss

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
/* This file will hold styles for all layouts using the alpha grid (i.e. not the mobile layout). */
44

55

6-
76
/* Zone User - Full Width */
87
#zone-user-wrapper #zone-user {
98
width: 100%;
@@ -77,7 +76,7 @@
7776
width: 60%;
7877
}
7978
.background-overlay {
80-
background: linear-gradient(to right, $blue 0%,$blue 10%,rgba(10,112,227,0.5) 50%,$blue 90%,$blue 100%);
79+
//background: linear-gradient(to right, $blue 0%,$blue 10%,rgba(10,112,227,0.5) 50%,$blue 90%,$blue 100%);
8180
height: 100%;
8281
width: 100%;
8382
position: absolute;
@@ -103,7 +102,7 @@
103102
font-size: 3.33em;
104103
line-height: $line-height-std;
105104
margin: 0 0 25px 0;
106-
padding: 0;
105+
padding: 5px;
107106
text-align: left;
108107
}
109108
.slide-body {
@@ -121,6 +120,8 @@
121120
transition-delay: $anim-speed;
122121
opacity: 0;
123122
text-shadow: 2px 2px 0 rgba(0,0,0,0.20);
123+
background-color: $black;
124+
padding: 5px;
124125
}
125126
.item-list {
126127
li {

sites/all/themes/osto_web/scss/partials/_blocks.scss

+7-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
==========================================================================
4444
*/
4545
#zone-header {
46-
padding: 65px 0;
46+
padding: 35px 0;
4747
}
4848
.region-header-first,
4949
.region-header-second {
@@ -59,7 +59,12 @@
5959
font-size: 1.85em;
6060
margin-bottom: 10px;
6161
font-weight: $font-weight-bold;
62-
color: $blue-light;
62+
color: $blue;
63+
}
64+
.field-item {
65+
display: inline-block;
66+
background-color: $black;
67+
padding: 5px;
6368
}
6469
}
6570
}

0 commit comments

Comments
 (0)