Last active
February 17, 2017 02:14
-
-
Save mitchgu/36ceeb71d3efe90886bf7e24b3d465df to your computer and use it in GitHub Desktop.
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
.content { | |
max-width: 850px; | |
margin: 0 auto; | |
padding: 0 30px; | |
} | |
body { | |
font-family: Georgia, "Times New Roman", sans-serif; | |
font-size: 16px; | |
} | |
h1, h2, h3, h4, h5, h6, .left-nav, .content>ul>li>a { | |
font-family: "Montserrat"; | |
} | |
h1, h2, h3 { | |
margin: 30px 0 20px; | |
} | |
.figure, content>center>img { | |
display:block; | |
margin: 20px auto; | |
} | |
center .caption { | |
padding-top: 10px; | |
} | |
button { | |
font-family: Montserrat; | |
text-transform: uppercase; | |
border-radius: 5px; | |
padding: 4px 15px 2px; | |
margin-right: 10px; | |
border: none; | |
} | |
button.viewanswer { | |
float: right; | |
background-color: #e6e6e6; | |
} | |
button.save { | |
background-color: #90d0ff; | |
} | |
button.submit, .response>button { | |
background-color: #bfe4ba; | |
} | |
.response>button { | |
margin-bottom:10px | |
} | |
.response>button::after { | |
content: " Response"; | |
} | |
.question, .response, .aside { | |
background-color: #fffff4; | |
border-radius: 0; | |
border: 1px solid #838383; | |
width: 100%; | |
padding: 25px 25px 15px; | |
} | |
.question input { | |
margin-bottom: 15px; | |
border-radius: 5px; | |
border: 1px solid #AAA; | |
padding: 2px 10px; | |
} | |
p { | |
border: 0px solid black; | |
margin-bottom: 20px; | |
} | |
.left-nav { | |
width: initial; | |
border-radius: 0; | |
position: absolute; | |
top: 0; | |
flex-direction: row; | |
width: 100vw; | |
border: none; | |
justify-content: center; | |
z-index: 9001; | |
} | |
.left-nav a { | |
padding: 2px 10px; | |
margin: 5px 10px; | |
border-radius: 0; | |
} | |
.nsubmits_left { | |
padding-top: 5px; | |
} | |
button:hover { | |
filter: brightness(1.05); | |
} | |
#myPage>.flex-row { | |
position: absolute; | |
top: 0; | |
width: 100vw; | |
background-color: firebrick; | |
} | |
#myPage>.flex-row>a { | |
margin: 5px 10px; | |
padding: 2px 10px; | |
border-radius: 0; | |
color: white; | |
background-color: initial; | |
font-size: initial; | |
border: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment