Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
c38c5e4a
Commit
c38c5e4a
authored
May 06, 2014
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add different backgrounds for other 2 colorful sections
parent
3d2137a6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
7 deletions
+43
-7
css/theme.css
css/theme.css
+20
-1
index.html
index.html
+2
-2
less/theme.less
less/theme.less
+21
-4
No files found.
css/theme.css
View file @
c38c5e4a
...
...
@@ -128,13 +128,16 @@ a:focus {
}
}
.intro
{
.
features-section
,
.outro
,
.
intro
{
display
:
table
;
width
:
100%
;
height
:
auto
;
padding
:
100px
0
;
text-align
:
center
;
color
:
#fff
;
}
.intro
{
background
:
url(images/header.jpg)
no-repeat
bottom
center
scroll
;
background-color
:
#000
;
-webkit-background-size
:
cover
;
...
...
@@ -143,6 +146,22 @@ a:focus {
-o-background-size
:
cover
;
}
.features-section
{
background
:
url('images/bgtr.svg')
top
right
no-repeat
,
url('images/bgbl.svg')
bottom
left
no-repeat
,
url('images/bgbl.svg')
bottom
left
no-repeat
,
url('images/overlay.png')
,
linear-gradient
(
45deg
,
#b39c68
,
#a56365
,
#412e4c
);
}
.outro
{
height
:
100%
;
background
:
url('images/bgtr.svg')
top
right
no-repeat
,
url('images/bgbl.svg')
bottom
left
no-repeat
,
url('images/overlay.png')
,
linear-gradient
(
45deg
,
#384955
,
#655361
,
#85505f
);
}
.intro-body
{
display
:
table-cell
;
vertical-align
:
middle
;
...
...
index.html
View file @
c38c5e4a
...
...
@@ -103,7 +103,7 @@
</div>
</section>
<section
class=
"
intro
content-section"
id=
"features"
>
<section
class=
"
features-section
content-section"
id=
"features"
>
<div
class=
"container"
>
<div
class=
"row"
>
<div
class=
"col-lg-4"
>
...
...
@@ -188,7 +188,7 @@
</div>
</section>
<section
class=
"
in
tro content-section"
id=
"contact"
>
<section
class=
"
ou
tro content-section"
id=
"contact"
>
<div
class=
"intro-body"
>
<div
class=
"container"
>
<div
class=
"row"
>
...
...
less/theme.less
View file @
c38c5e4a
...
...
@@ -133,22 +133,39 @@ a:focus {
}
// Full Page Image Intro Section
.intro {
.features-section, .outro, .intro {
display: table;
width: 100%;
height: auto;
padding: 100px 0;
text-align: center;
color: @light;
color: #fff;
}
.intro {
background: url(images/header.jpg) no-repeat bottom center scroll;
background-color:
@dark
;
background-color:
#000
;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
.features-section {
background: url('images/bgtr.svg') top right no-repeat,
url('images/bgbl.svg') bottom left no-repeat,
url('images/bgbl.svg') bottom left no-repeat,
url('images/overlay.png'),
linear-gradient(45deg, #b39c68, #a56365, #412e4c);
}
.outro {
background: url('images/bgtr.svg') top right no-repeat,
url('images/bgbl.svg') bottom left no-repeat,
url('images/overlay.png'),
linear-gradient(45deg, #384955, #655361, #85505f);
}
.intro-body {
display: table-cell;
vertical-align: middle;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment