2020-11-26 00:57:56 +00:00
|
|
|
html {
|
|
|
|
font-family: 'Open Sans', 'helvetica', sans-serif;
|
|
|
|
background: white;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Titles */
|
|
|
|
h1 { text-transform: uppercase }
|
|
|
|
h1, h2 {
|
2020-12-05 19:52:41 +00:00
|
|
|
font-weight: normal;
|
2020-11-26 00:57:56 +00:00
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title
|
|
|
|
{
|
|
|
|
font-size: 2.5em;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 50px;
|
|
|
|
text-transform: none;
|
|
|
|
color: #3a7c78;
|
|
|
|
line-height: 1;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.latest
|
|
|
|
{-
|
|
|
|
padding: 10px 10px;
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_detail
|
|
|
|
{
|
|
|
|
font-size: 2em;
|
|
|
|
line-height: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entry-content
|
|
|
|
{
|
|
|
|
margin-top: 50px;
|
|
|
|
margin-bottom: 50px;
|
|
|
|
text-align: justify;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
article section .about
|
|
|
|
{
|
|
|
|
font-size: 18px;
|
|
|
|
color: #444;
|
|
|
|
text-align: justify;
|
|
|
|
}
|
|
|
|
|
|
|
|
article section .blog-post
|
|
|
|
{
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Body */
|
2020-12-05 19:52:41 +00:00
|
|
|
body { margin: 0px; }
|
|
|
|
|
|
|
|
body > article, footer
|
|
|
|
{
|
2020-11-26 00:57:56 +00:00
|
|
|
line-height: 1.6em;
|
|
|
|
display: block;
|
|
|
|
margin: auto 5px auto 285px;
|
|
|
|
padding: 10px 5px 10px;*/
|
|
|
|
}
|
|
|
|
|
|
|
|
article ol.posts
|
|
|
|
{
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Articles */
|
2020-12-05 19:52:41 +00:00
|
|
|
p.post_entry { }
|
|
|
|
|
|
|
|
article > header
|
|
|
|
{
|
2020-11-26 00:57:56 +00:00
|
|
|
list-style-type: none;
|
|
|
|
padding: 0px 10px;
|
|
|
|
box-shadow: 0 0 0 2px #3a7c78;
|
|
|
|
-moz-border-radius: 5px 0;
|
|
|
|
-webkit-border-radius: 5px 0;
|
|
|
|
border-radius: 5px 5px;
|
|
|
|
}
|
|
|
|
.article_left > h1 {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
.article_right {
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
.post_list {
|
|
|
|
list-style-type: none;
|
|
|
|
padding: 10px 10px;
|
|
|
|
-moz-border-radius: 5px 0;
|
|
|
|
-webkit-border-radius: 5px 0;
|
|
|
|
border-radius: 5px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Links */;
|
2020-12-05 19:52:41 +00:00
|
|
|
a { color: #3a7c78; text-decoration:none; }
|
2020-11-26 00:57:56 +00:00
|
|
|
a:visited { color: #3a7c78; text-decoration:none; }
|
2020-12-05 19:52:41 +00:00
|
|
|
a:link { color: #3a7c78; text-decoration:none; }
|
|
|
|
a:active { color: #3a7c78; text-decoration:none; }
|
2020-11-26 00:57:56 +00:00
|
|
|
a:hover { text-decoration: underline; }
|
|
|
|
|
|
|
|
/* Code */
|
|
|
|
.highlight pre {
|
|
|
|
font-size: 14px;
|
|
|
|
overflow: auto;
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sidebar */
|
|
|
|
aside {
|
|
|
|
font-size: 14px;
|
|
|
|
width: 220px; height: 100%;
|
|
|
|
position: fixed;
|
|
|
|
top: 0; left: 0;
|
|
|
|
padding: 30px;
|
|
|
|
background-color: #3a7c78;
|
|
|
|
color: white;
|
|
|
|
box-shadow: 0 0 3px black;
|
|
|
|
text-align: center;
|
2020-12-05 19:52:41 +00:00
|
|
|
padding-top: 5em;
|
2020-11-26 00:57:56 +00:00
|
|
|
background-size: cover;
|
2020-12-05 19:52:41 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-11-26 00:57:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
aside > ul {
|
|
|
|
list-style-type: none;
|
|
|
|
padding: 0px 10px;
|
|
|
|
margin-top: 0px;
|
|
|
|
}
|
|
|
|
aside > h2 {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 14px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
2020-12-05 19:52:41 +00:00
|
|
|
#avatar
|
|
|
|
{
|
|
|
|
margin: 0px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#avatar img {
|
2020-11-26 00:57:56 +00:00
|
|
|
display: block;
|
2020-12-05 19:52:41 +00:00
|
|
|
width: 100px;
|
2020-11-26 00:57:56 +00:00
|
|
|
margin: 0 10px 20px 0;
|
|
|
|
-webkit-transition: 200ms;
|
|
|
|
-moz-transition: 200ms;
|
|
|
|
-ms-transition: 200ms;
|
|
|
|
-o-transition: 200ms;
|
|
|
|
transition: 200ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav
|
|
|
|
{
|
|
|
|
display: block;
|
2020-12-05 19:52:41 +00:00
|
|
|
margin: 40px -30px;
|
2020-11-26 00:57:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav > ul > li
|
|
|
|
{
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav a
|
|
|
|
{
|
2020-12-05 19:52:41 +00:00
|
|
|
color: #fff;
|
|
|
|
text-decoration: none;
|
|
|
|
-webkit-transition: 200ms;
|
|
|
|
-moz-transition: 200ms;
|
|
|
|
-ms-transition: 200ms;
|
|
|
|
-o-transition: 200ms;
|
|
|
|
transition: 200ms;
|
2020-11-26 00:57:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav a:hover
|
|
|
|
{
|
2020-12-05 19:52:41 +00:00
|
|
|
background-color: #73d08a;
|
|
|
|
color: #3a7c78;
|
|
|
|
-webkit-transition: 200ms;
|
|
|
|
-moz-transition: 200ms;
|
|
|
|
-ms-transition: 200ms;
|
|
|
|
-o-transition: 200ms;
|
|
|
|
transition: 200ms;
|
2020-11-26 00:57:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.list-bare
|
|
|
|
{
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav__link
|
|
|
|
{
|
|
|
|
display: block;
|
2020-12-05 19:52:41 +00:00
|
|
|
padding: 0.77273rem 0rem;
|
|
|
|
border: 0px solid #73d08a;
|
|
|
|
margin: 0px 5px;
|
|
|
|
border-radius: 10px 10px;
|
2020-11-26 00:57:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.blog_roll_link
|
|
|
|
{
|
|
|
|
display: block;
|
|
|
|
padding: 0.33147rem 0;
|
2020-12-05 19:52:41 +00:00
|
|
|
border: 0px solid #73d08a;
|
|
|
|
margin: 0px 5px;
|
|
|
|
border-radius: 10px 10px;
|
2020-11-26 00:57:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*--------Responsive------------*/
|
|
|
|
|
|
|
|
@media (max-width: 800px) {
|
|
|
|
|
|
|
|
aside {
|
|
|
|
left: 0;
|
|
|
|
max-width: none;
|
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0;
|
|
|
|
padding-top: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav
|
|
|
|
{
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
body > article {
|
|
|
|
margin: 0 auto;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer
|
|
|
|
{
|
|
|
|
padding: 1em;
|
|
|
|
margin-left: 1em;
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#avatar {
|
|
|
|
height: 50px;
|
|
|
|
width: 50px;
|
|
|
|
margin: 10px auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#live {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: stretch;
|
|
|
|
height: 75vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
#embedded-video {
|
|
|
|
display: flex;
|
|
|
|
flex: 7;
|
|
|
|
}
|
|
|
|
|
|
|
|
#embedded-chat {
|
2020-12-05 19:52:41 +00:00
|
|
|
padding: 2px;
|
2020-11-26 00:57:56 +00:00
|
|
|
display: flex;
|
|
|
|
flex: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
#live iframe {
|
|
|
|
border: 0px;
|
|
|
|
flex: 1;
|
|
|
|
}
|
2020-12-19 00:10:24 +00:00
|
|
|
|
|
|
|
#footlinks {
|
|
|
|
width: 100%;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#footlinks ul
|
|
|
|
{
|
|
|
|
display: flex;
|
|
|
|
align-items: stretch;
|
|
|
|
justify-content: space-between;
|
|
|
|
list-style: none;
|
|
|
|
padding: 0 50px;
|
|
|
|
margin: 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#footlinks li
|
|
|
|
{
|
|
|
|
display: block;
|
|
|
|
flex: 0 1 auto;
|
|
|
|
margin: 0px 5px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
#footlinks a
|
|
|
|
{
|
|
|
|
-webkit-transition: 200ms;
|
|
|
|
-moz-transition: 200ms;
|
|
|
|
-ms-transition: 200ms;
|
|
|
|
-o-transition: 200ms;
|
|
|
|
transition: 200ms;
|
|
|
|
display: block;
|
|
|
|
width: 10rem;
|
|
|
|
height: 1.5rem;
|
|
|
|
padding: 0.77273rem 0rem;
|
|
|
|
background-color: #3a7c78;
|
|
|
|
color: white;
|
|
|
|
vertical-align: middle;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
border: 0px solid #3a7c78;
|
|
|
|
margin: 0px 5px;
|
|
|
|
border-radius: 10px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#footlinks a:hover {
|
|
|
|
background-color: #73d08a;
|
|
|
|
border-color: #73d08a;
|
|
|
|
color: #3a7c78;
|
|
|
|
}
|