Last active
August 20, 2019 21:02
-
-
Save Vusys/ca116c12bc6d96759c886411c78ab365 to your computer and use it in GitHub Desktop.
Oldish New Laravel Docs
This file contains hidden or 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
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap'); | |
body { | |
font-family: 'Open Sans', sans-serif; | |
color: #525252; | |
} | |
a, h2{ | |
transition: none !important; | |
} | |
/* Bullshit and ads */ | |
#carbonads, .partner_block, .footer_content .logotype{ | |
display: none; | |
} | |
/* Sidebar */ | |
.sidebar_layout .sidebar nav .navigation_contain ul li { | |
padding: 0.4em; | |
} | |
.sidebar_layout .sidebar nav .navigation_contain ul li ul li { | |
padding: 0.2em; | |
} | |
.sidebar_layout .sidebar nav .navigation_contain ul li.sub--on > h2{ | |
margin-bottom: 0.4em; | |
} | |
.sidebar_layout .sidebar nav .navigation_contain ul ul li a { | |
color: #f4645f; | |
} | |
.sidebar_layout .sidebar nav .navigation_contain ul ul li a:hover { | |
color: #e74430; | |
transform: none; | |
} | |
.sidebar_layout .sidebar nav .navigation_contain ul li h2 { | |
margin-bottom: 0; | |
color: #525252; | |
} | |
.sidebar_layout .sidebar nav .navigation_contain ul li h2:hover{ | |
transform: none; | |
} | |
.sidebar_layout, .sidebar_layout .sidebar{ | |
background: white; | |
} | |
.sidebar_layout .sidebar::before{ | |
background: white; | |
border-right: 1px solid #f0f2f1; | |
} | |
.sidebar_layout .sidebar nav .navigation_contain ul ul li.active a::before{ | |
display:none; | |
} | |
/* Docs Nav */ | |
.docs_main h1 + ul li { | |
margin-bottom: 0.2em; | |
} | |
.docs_main h1 + ul ul { | |
margin-top: 0.2em; | |
} | |
.docs_main h1 + ul li a { | |
color: #f4645f; | |
} | |
.docs_main h1 + ul li a:hover { | |
color: #e74430; | |
} | |
.docs_main h1 + ul li a { | |
font-weight: 700; | |
} | |
/* Docs Content */ | |
.docs_main h1 { | |
font-size: 3em; | |
font-weight: 100; | |
} | |
.docs_main h2 a, .docs_main h3 a, .docs_main h4 a{ | |
color: #525252; | |
} | |
.docs_main code{ | |
font-size: 0.9em; | |
} | |
.callout{ | |
background: #64B5F6; | |
color: white; | |
border-radius: 3px; | |
padding: 10px 15px 10px 15px; | |
box-shadow: none; | |
} | |
.callout .icon{ | |
background: none !important; | |
color: white; | |
} | |
.callout .icon img{ | |
opacity: 1; | |
} | |
.callout p{ | |
color: white; | |
} | |
.callout p a { | |
color: white; | |
} | |
.callout p a:hover { | |
color: #fcd8d6; | |
} | |
blockquote{ | |
margin: 0; | |
} | |
/** Footer */ | |
footer .footer_bg{ | |
background: #fafafa; | |
padding: unset; | |
border-top: 1px solid #f0f2f1; | |
} | |
footer .footer_contain{ | |
max-width: none; | |
margin: 0; | |
margin-top: 40px; | |
margin-bottom: 40px; | |
padding: unset; | |
} | |
.footer_content{ | |
margin: 20px 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment