Skip to content

Instantly share code, notes, and snippets.

@diegoboot
Last active March 7, 2020 15:03
Show Gist options
  • Save diegoboot/126f709ec646aa5cfecf675be4ed89c7 to your computer and use it in GitHub Desktop.
Save diegoboot/126f709ec646aa5cfecf675be4ed89c7 to your computer and use it in GitHub Desktop.
/* CSS de Classes*/
.ctc { color: #1c2329; font-family: 'Montserrat', Arial, sans-serif; font-size: 14px; line-height: 2; letter-spacing: 0.5px}
.h2_ctc { color: #1c2329; font-family: 'Raleway', Arial, sans-serif; line-height: 1.5; letter-spacing: 15px}
h1 { color: #1c2329; font-family: 'Montserrat', Arial, sans-serif; line-height: 1.5;}
h2 { color: #1c2329; font-family: 'Montserrat', Arial, sans-serif; line-height: 1.5;}
h3 { color: #5088a9; font-family: 'Comfortaa', Arial, sans-serif; font-size: 16px; line-height: 1.5;}
h4 { color: #1c2329; font-family: 'Montserrat', Arial, sans-serif; line-height: 1.5;}
li { color: #1c2329; font-family: 'Montserrat', Arial, sans-serif; font-size: 14px; line-height: 2.5;}
ul { color: #1c2329; font-family: 'Montserrat', Arial, sans-serif; font-size: 14px; line-height: 2.5;}
td { color: #1c2329; font-family: 'Montserrat', Arial, sans-serif; font-size: 14px; line-height: 2.5;}
.links { color: #5088a9; font-family: 'Oswald', Arial, sans-serif; font-size: 16px; line-height: 2; letter-spacing: 1.5px}
hr {
width: 30%;
text-align: left; /* Para o IE */
margin: 0 auto 0 0; /* Para navegadores standard */
}
/* TABELAS */
table {
border-collapse: collapse;
width: 100%;
}
th, td {
padding: 8px;
text-align: left;
border-bottom: 1px solid #ddd;
}
tr:hover {background-color:#f5f5f5;
}
/* QUOTES */
@import url(https://fonts.googleapis.com/css?family=PT+Sans|Ubuntu:300,400,700);
.quote {
background: #fff;
width: 100%;
max-width: 100%;
margin: 2em auto 0;
padding: 1.5em;
font: normal 300 1.3em/1.5em 'Ubuntu', sans-serif;
}
p { margin-bottom: 1.5em; }
p:last-child { margin-bottom: 0; }
blockquote {
display: block;
border-width: 3px 0;
border-style: solid;
border-color: #eee;
padding: 0.5em 0 0.5em;
margin: 1.5em 0;
position: relative;
}
blockquote:before {
content: '\201C';
position: absolute;
top: 0em;
left: 50%;
transform: translate(-50%, -50%);
background: #fff;
width: 3rem;
height: 2rem;
font: 6em/1.08em 'Ubuntu', sans-serif;
color: #666;
text-align: center;
}
blockquote:after {
content: "\2013 \2003" attr(cite);
display: block;
text-align: right;
font-size: 0.875em;
color: #e74c3c;
}
.accordion_ctc {
background-color: #00224f;
color: #fff;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 1.5em;
transition: 0.4s;
}
.active, .accordion_ctc:hover {
background-color: #0095ff;
}
.panel_ctc {
padding: 0 18px;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment