Last active
March 18, 2019 13:22
-
-
Save ManzDev/1818850396bc5482a2fe4bcf80bdd3a8 to your computer and use it in GitHub Desktop.
Flisol CSS
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=Montserrat:400,600,800'); | |
| body { | |
| background: #e0bef6; | |
| margin: 0; | |
| font-family: Montserrat, sans-serif; | |
| font-size: 16px; | |
| } | |
| /* HEADER */ | |
| .header { | |
| background: #5c0693; | |
| padding: 1em; | |
| color: #fff; | |
| } | |
| .header .logo { | |
| } | |
| .header .search, | |
| #username { | |
| float: right; | |
| } | |
| #username { | |
| clear: both; | |
| margin: 0; | |
| font-size: 0.8rem | |
| } | |
| .header .gotobar { display: none } | |
| .header .editbar { | |
| float: right; | |
| clear: both; | |
| font-size: 0.8rem; | |
| margin-top: 1em; | |
| } | |
| .header .editbar a { | |
| color: #b284ff; | |
| } | |
| .header h1 { | |
| font-size: 1.2rem; | |
| } | |
| .header h1 a { | |
| padding: 0 10px; | |
| margin: 0 10px; | |
| text-decoration: none; | |
| background: #222; | |
| border: 2px solid #111; | |
| } | |
| .header a { | |
| color: #ddd; | |
| } | |
| .header li { | |
| display: inline-block; | |
| padding: 0 6px; | |
| } | |
| /* MENU */ | |
| .wrapper { | |
| display: grid; | |
| grid-template-columns: 0.2fr 1fr; | |
| } | |
| .sidebar { | |
| width: 200px; | |
| padding: 0 20px 0 20px; | |
| background: #d8c8f1; | |
| } | |
| .sidebar h2 { | |
| font-size: 1.2rem; | |
| } | |
| .sidebar ul { | |
| margin:0; | |
| padding:0; | |
| } | |
| .sidebar li { | |
| list-style-type: none; | |
| padding-left: 15px; | |
| } | |
| .sidebar img + a { | |
| vertical-align: top; | |
| } | |
| .sidebar a { | |
| color: #222; | |
| } | |
| .sidebar a:hover { | |
| color: #a80404; | |
| } | |
| .sidebar img { | |
| border:1px solid #fff; | |
| border-radius: 50%; | |
| } | |
| /*** CONTENT ***/ | |
| .content { | |
| padding: 20px; | |
| } | |
| .content h1 { | |
| font-weight: 700; | |
| } | |
| .content table { | |
| border:1px solid #222; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment