Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
SearchEngine
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Rosa Delima Mendrofa
SearchEngine
Commits
54926c35
Commit
54926c35
authored
May 04, 2020
by
Yolanda Nainggolan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
scss
parent
f007290e
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
166 additions
and
0 deletions
+166
-0
_call-to-action.scss
...tedIndexSimulator/static/assets/scss/_call-to-action.scss
+17
-0
_footer.scss
...ne/InvertedIndexSimulator/static/assets/scss/_footer.scss
+4
-0
_global.scss
...ne/InvertedIndexSimulator/static/assets/scss/_global.scss
+13
-0
_icons.scss
...ine/InvertedIndexSimulator/static/assets/scss/_icons.scss
+20
-0
_masthead.scss
.../InvertedIndexSimulator/static/assets/scss/_masthead.scss
+27
-0
_mixins.scss
...ne/InvertedIndexSimulator/static/assets/scss/_mixins.scss
+13
-0
_showcase.scss
.../InvertedIndexSimulator/static/assets/scss/_showcase.scss
+14
-0
_testimonials.scss
...ertedIndexSimulator/static/assets/scss/_testimonials.scss
+11
-0
_variables.scss
...InvertedIndexSimulator/static/assets/scss/_variables.scss
+35
-0
landing-page.scss
...vertedIndexSimulator/static/assets/scss/landing-page.scss
+12
-0
No files found.
SearchEngine/InvertedIndexSimulator/static/assets/scss/_call-to-action.scss
0 → 100644
View file @
54926c35
.call-to-action
{
position
:
relative
;
background-color
:
$gray-800
;
background
:
url('../img/bg-masthead.jpg')
no-repeat
center
center
;
@include
background-cover
;
padding-top
:
7rem
;
padding-bottom
:
7rem
;
.overlay
{
position
:
absolute
;
background-color
:
$gray-900
;
height
:
100%
;
width
:
100%
;
top
:
0
;
left
:
0
;
opacity
:
0
.3
;
}
}
SearchEngine/InvertedIndexSimulator/static/assets/scss/_footer.scss
0 → 100644
View file @
54926c35
footer
.footer
{
padding-top
:
4rem
;
padding-bottom
:
4rem
;
}
SearchEngine/InvertedIndexSimulator/static/assets/scss/_global.scss
0 → 100644
View file @
54926c35
body
{
@include
body-font
;
}
h1
,
h2
,
h3
,
h4
,
h5
,
h6
{
@include
body-font
;
font-weight
:
700
;
}
SearchEngine/InvertedIndexSimulator/static/assets/scss/_icons.scss
0 → 100644
View file @
54926c35
.features-icons
{
padding-top
:
7rem
;
padding-bottom
:
7rem
;
.features-icons-item
{
max-width
:
20rem
;
.features-icons-icon
{
height
:
7rem
;
i
{
font-size
:
4
.5rem
;
}
}
&
:hover
{
.features-icons-icon
{
i
{
font-size
:
5rem
;
}
}
}
}
}
SearchEngine/InvertedIndexSimulator/static/assets/scss/_masthead.scss
0 → 100644
View file @
54926c35
header
.masthead
{
position
:
relative
;
background-color
:
$gray-800
;
background
:
url('../img/bg-masthead.jpg')
no-repeat
center
center
;
@include
background-cover
;
padding-top
:
8rem
;
padding-bottom
:
8rem
;
.overlay
{
position
:
absolute
;
background-color
:
$gray-900
;
height
:
100%
;
width
:
100%
;
top
:
0
;
left
:
0
;
opacity
:
0
.3
;
}
h1
{
font-size
:
2rem
;
}
@media
(
min-width
:
768px
)
{
padding-top
:
12rem
;
padding-bottom
:
12rem
;
h1
{
font-size
:
3rem
;
}
}
}
SearchEngine/InvertedIndexSimulator/static/assets/scss/_mixins.scss
0 → 100644
View file @
54926c35
// Mixins
// Background Cover Mixin
@mixin
background-cover
{
-webkit-background-size
:
cover
;
-moz-background-size
:
cover
;
-o-background-size
:
cover
;
background-size
:
cover
;
}
// Font Mixins
@mixin
body-font
{
font-family
:
'Lato'
,
'Helvetica Neue'
,
Helvetica
,
Arial
,
sans-serif
;
}
SearchEngine/InvertedIndexSimulator/static/assets/scss/_showcase.scss
0 → 100644
View file @
54926c35
.showcase
{
.showcase-text
{
padding
:
3rem
;
}
.showcase-img
{
min-height
:
30rem
;
background-size
:
cover
;
}
@media
(
min-width
:
768px
)
{
.showcase-text
{
padding
:
7rem
;
}
}
}
SearchEngine/InvertedIndexSimulator/static/assets/scss/_testimonials.scss
0 → 100644
View file @
54926c35
.testimonials
{
padding-top
:
7rem
;
padding-bottom
:
7rem
;
.testimonial-item
{
max-width
:
18rem
;
img
{
max-width
:
12rem
;
box-shadow
:
0px
5px
5px
0px
$gray-500
;
}
}
}
SearchEngine/InvertedIndexSimulator/static/assets/scss/_variables.scss
0 → 100644
View file @
54926c35
// Variables
// Restated Bootstrap Variables
$white
:
#fff
!
default
;
$gray-100
:
#f8f9fa
!
default
;
$gray-200
:
#e9ecef
!
default
;
$gray-300
:
#dee2e6
!
default
;
$gray-400
:
#ced4da
!
default
;
$gray-500
:
#adb5bd
!
default
;
$gray-600
:
#868e96
!
default
;
$gray-700
:
#495057
!
default
;
$gray-800
:
#343a40
!
default
;
$gray-900
:
#212529
!
default
;
$black
:
#000
!
default
;
$blue
:
#007bff
!
default
;
$indigo
:
#6610f2
!
default
;
$purple
:
#6f42c1
!
default
;
$pink
:
#e83e8c
!
default
;
$red
:
#dc3545
!
default
;
$orange
:
#fd7e14
!
default
;
$yellow
:
#ffc107
!
default
;
$green
:
#28a745
!
default
;
$teal
:
#20c997
!
default
;
$cyan
:
#17a2b8
!
default
;
$primary
:
$blue
!
default
;
$secondary
:
$gray-600
!
default
;
$success
:
$green
!
default
;
$info
:
$cyan
!
default
;
$warning
:
$yellow
!
default
;
$danger
:
$red
!
default
;
$light
:
$gray-100
!
default
;
$dark
:
$gray-800
!
default
;
SearchEngine/InvertedIndexSimulator/static/assets/scss/landing-page.scss
0 → 100644
View file @
54926c35
// Core variables and mixins
@import
"variables.scss"
;
@import
"mixins.scss"
;
// Global CSS
@import
"global.scss"
;
// Components
@import
"masthead.scss"
;
@import
"showcase.scss"
;
@import
"icons.scss"
;
@import
"testimonials.scss"
;
@import
"call-to-action.scss"
;
@import
"footer.scss"
;
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