-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reorganizing css and fixing css issues
- Loading branch information
1 parent
b62bdfe
commit b1db36b
Showing
10 changed files
with
117 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# This configuration was used Ebert to review the joaomdmoura/machinery repository | ||
# on 56a7e3e2edce2b0c0c4f8fb2746183a5bc8a3cf1. | ||
# You can make this the default configuration for future reviews by moving this | ||
# file to your repository as `.ebert.yml` and pushing it to GitHub, and tweak | ||
# it as you wish - To know more on how to change this file to better review your | ||
# repository you can go to https://docs.ebertapp.io/configuration and see the configuration | ||
# details. | ||
--- | ||
styleguide: plataformatec/linters | ||
engines: | ||
credo: | ||
enabled: true | ||
fixme: | ||
enabled: true | ||
eslint: | ||
enabled: true | ||
csslint: | ||
enabled: true | ||
remark-lint: | ||
enabled: true | ||
exclude_paths: | ||
- config | ||
- test | ||
- lib/web/static/vendor | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,123 +1,48 @@ | ||
/* This file is for your main application css. */ | ||
body { | ||
font-family: 'Roboto', sans-serif; | ||
} | ||
|
||
h1 { | ||
font-family: 'Roboto', sans-serif; | ||
font-size: 2.4rem; | ||
font-weight: 900; } | ||
|
||
h2 { | ||
font-family: 'Roboto', sans-serif; | ||
font-size: 2.4rem; | ||
font-weight: 400; } | ||
|
||
h3 { | ||
font-family: 'Roboto', sans-serif; | ||
font-size: 1.8rem; | ||
font-weight: 400; } | ||
|
||
h4 { | ||
font-family: 'Roboto', sans-serif; | ||
font-size: 1.4rem; | ||
font-weight: 400; } | ||
|
||
h5 { | ||
font-family: 'Roboto', sans-serif; | ||
font-size: 1rem; | ||
letter-spacing: .1rem; | ||
font-weight: 900; | ||
text-transform: uppercase; } | ||
|
||
h6 { | ||
font-family: 'Roboto', sans-serif; | ||
font-size: .8rem; | ||
letter-spacing: .1rem; | ||
font-weight: 400; | ||
text-transform: uppercase; } | ||
.resource-item { cursor: pointer; } | ||
|
||
nav.sidebar { | ||
border-right: 1px solid #eee; | ||
background: #6063bb; | ||
border-right: 1px solid #eee; | ||
} | ||
|
||
a, a:hover, a:active { | ||
color: #fff; | ||
text-decoration: none; | ||
} | ||
|
||
.nav-pills .nav-link { | ||
color: #fff; | ||
} | ||
.nav-pills .nav-link.active, .nav-pills .nav-link:hover, .nav-pills .show>.nav-link { | ||
background-color: #5354aa !important; | ||
.nav-pills .nav-link.active, .nav-pills .nav-link:hover { /* csslint allow: adjoining-classes */ | ||
background-color: #5354aa; | ||
} | ||
|
||
.sidebar .site-title { | ||
margin-top: .5rem; | ||
border: none; | ||
color: #fff; | ||
font-size: 0.9rem; | ||
letter-spacing: .2rem; | ||
margin-bottom: 1.75rem; | ||
margin-top: .5rem; | ||
padding:0 1rem; | ||
text-transform: uppercase; | ||
} | ||
|
||
.sidebar h1 { | ||
color: #fff; | ||
.topbar .site-title { | ||
border: none; | ||
color: #fff; | ||
font-size: 0.9rem; | ||
padding: 0rem 1rem; | ||
text-transform: uppercase; | ||
letter-spacing: .2rem; | ||
} | ||
|
||
div.spaced { | ||
margin-top: 25px; | ||
} | ||
|
||
.colored { | ||
color: #666; | ||
} | ||
|
||
div.filled { | ||
padding: 15px 15px; | ||
background-color: rgb(241, 239, 239); | ||
border-radius: .3rem; | ||
margin: 0px 10px; | ||
padding: 15px 0 10px 0; | ||
text-transform: uppercase; | ||
} | ||
|
||
nav.topbar { | ||
background: #6063bb; | ||
border-bottom: 1px solid #eee; | ||
left: 0; | ||
overflow-x: hidden; | ||
position: fixed; | ||
top:0; | ||
left: 0; | ||
z-index: 1000; | ||
overflow-x: hidden; | ||
background: #6063bb; | ||
border-bottom: 1px solid #eee; | ||
} | ||
|
||
@media screen and (min-width: 480px) { | ||
nav.topbar { | ||
display: none; | ||
} | ||
nav.topbar { display: none; } | ||
} | ||
|
||
@media screen and (max-width: 480px) { | ||
main { | ||
top: 60px; | ||
} | ||
main { top: 60px; } | ||
} | ||
|
||
.topbar h1 { | ||
color: #fff; | ||
border: none; | ||
font-size: 0.9rem; | ||
padding: 15px 0 10px 0; | ||
text-transform: uppercase; | ||
letter-spacing: .2rem; | ||
} | ||
|
||
.oi { | ||
color: #fff; | ||
} | ||
|
||
.resource-item { | ||
cursor: pointer; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.spaced { margin-top: 25px; } | ||
|
||
.colored { color: #666; } | ||
|
||
.filled { | ||
background-color: rgb(241, 239, 239); | ||
border-radius: .3rem; | ||
margin: 0 10px; | ||
padding: 15px 15px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
body { | ||
font-family: 'Roboto', sans-serif; | ||
} | ||
|
||
h1, h2, h3, h4,h5, h5 { | ||
font-family: 'Roboto', sans-serif; | ||
} | ||
h1, h5 { font-weight: 900; } | ||
h2, h3, h4, h6 { font-weight: 400; } | ||
h1 { font-size: 2.4rem; } | ||
h2 { font-size: 2.4rem; } | ||
h3 { font-size: 1.8rem; } | ||
h4 { font-size: 1.4rem; } | ||
h5 { | ||
font-size: 1rem; | ||
letter-spacing: .1rem; | ||
text-transform: uppercase; | ||
} | ||
h6 { | ||
font-size: .8rem; | ||
letter-spacing: .1rem; | ||
text-transform: uppercase; | ||
} | ||
|
||
.oi { | ||
color: #fff; | ||
} | ||
|
||
a, a:hover, a:active { | ||
color: #fff; | ||
text-decoration: none; | ||
} | ||
|
||
.nav-pills .nav-link { | ||
color: #fff; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters