forked from modiqi/git-it-write
177 lines
No EOL
2.9 KiB
CSS
177 lines
No EOL
2.9 KiB
CSS
.giw_title .title-count {
|
|
font-size: 10px;
|
|
padding: 2px 8px;
|
|
}
|
|
|
|
.button .dashicons {
|
|
margin: 5px 5px 0 0;
|
|
}
|
|
|
|
#main{
|
|
display: flex;
|
|
}
|
|
#content{
|
|
width: calc(100% - 300px);
|
|
}
|
|
#content h2 {
|
|
margin: 45px 0 15px 0;
|
|
font-size: 1.5em;
|
|
font-weight: 400;
|
|
}
|
|
|
|
table.widefat td {
|
|
padding: 15px;
|
|
}
|
|
|
|
.repo_item {
|
|
background: #fff;
|
|
border: 1px solid #dfdfdf;
|
|
padding: 15px;
|
|
border-radius: 5px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.log_wrap {
|
|
font-family: monospace;
|
|
background: #000;
|
|
color: #fff;
|
|
overflow: auto;
|
|
white-space: nowrap;
|
|
}
|
|
.log_wrap > p {
|
|
margin: 0;
|
|
padding: 5px 10px;
|
|
}
|
|
.log_wrap > p:hover{
|
|
background: #2271b1;
|
|
}
|
|
|
|
/* Toolbar */
|
|
.toolbar .button{
|
|
margin-right: 10px;
|
|
}
|
|
.toolbar .extra{
|
|
float: right;
|
|
}
|
|
.toolbar .extra > .button:last-child{
|
|
margin-right: 0;
|
|
}
|
|
|
|
.form-table h4{
|
|
margin: 0;
|
|
}
|
|
|
|
/* Sidebar */
|
|
#sidebar{
|
|
flex: 1;
|
|
margin: 0 0 20px 30px;
|
|
}
|
|
.side_card {
|
|
padding: 20px;
|
|
background-position: 30px center;
|
|
margin-bottom: 15px;
|
|
background-size: 95px;
|
|
background-color: #fff;
|
|
border: 1px solid #c3c4c7;
|
|
}
|
|
.side_card h2 {
|
|
margin: -20px -20px 20px -20px;
|
|
padding: 12.5px 15px;
|
|
border-bottom: 1px solid #c3c4c7;
|
|
font-size: 1.2em;
|
|
}
|
|
.side_card h2 .dashicons {
|
|
margin: 0 10px 0 0;
|
|
}
|
|
.side_card p {
|
|
font-size: 14px;
|
|
}
|
|
.side_card .cta_link {
|
|
display: block;
|
|
margin: 10px 0;
|
|
text-decoration: none;
|
|
font-size: 14px;
|
|
}
|
|
.side_card .cta_link:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
.side_card .cta_link .dashicons{
|
|
margin-left: 2.5px;
|
|
}
|
|
.side_card .cta_link:hover .dashicons{
|
|
margin-left: 5px;
|
|
}
|
|
.side_banner{
|
|
display: block;
|
|
margin: -20px -20px 20px -20px;
|
|
border-bottom: 1px solid #dfdfdf;
|
|
line-height: 0;
|
|
overflow: hidden;
|
|
}
|
|
.side_banner img{
|
|
width: 100%;
|
|
}
|
|
.side_banner:hover img{
|
|
opacity: 0.8;
|
|
}
|
|
#sidebar .side_btn{
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Subscribe form */
|
|
.subscribe_form {
|
|
display: flex;
|
|
padding: 15px;
|
|
background: #f7f7f7;
|
|
border-radius: 5px;
|
|
margin: 20px 0;
|
|
flex-direction: column;
|
|
}
|
|
.subscribe_form .subscribe_email_box {
|
|
width: 100%;
|
|
margin-bottom: 10px;
|
|
}
|
|
.subscribe_form .subscribe_btn .dashicons{
|
|
font-size: 16px;
|
|
width: 16px;
|
|
margin: 7px 3px 0 0;
|
|
}
|
|
|
|
.side_card .follow_btns > a{
|
|
display: block;
|
|
text-align: center;
|
|
margin-bottom: 15px;
|
|
}
|
|
.side_card .follow_btns > a:last-child{
|
|
margin-bottom: 0;
|
|
}
|
|
.twitter_btn.button{
|
|
background: #000;
|
|
color: #fff;
|
|
border-color: transparent;
|
|
}
|
|
.facebook_btn.button{
|
|
background: #0866ff;
|
|
color: #fff;
|
|
border-color: transparent;
|
|
}
|
|
|
|
@media screen and (max-width: 950px) {
|
|
#main{
|
|
display: block;
|
|
}
|
|
#content{
|
|
width: 100%;
|
|
padding-right: 0;
|
|
}
|
|
#sidebar{
|
|
margin: 20px 0 0 0;
|
|
width: 100%;
|
|
}
|
|
.toolbar .extra{
|
|
float: none;
|
|
display: block;
|
|
margin-top: 10px;
|
|
}
|
|
} |