Skip to content

Instantly share code, notes, and snippets.

@humayunahmed8
Created September 15, 2018 19:05
Show Gist options
  • Save humayunahmed8/35817be8f1f2a44645f6b79b941913d4 to your computer and use it in GitHub Desktop.
Save humayunahmed8/35817be8f1f2a44645f6b79b941913d4 to your computer and use it in GitHub Desktop.
Default CSS for WP
/*==================================
Default CSS
=====================================*/
@import url('https://fonts.googleapis.com/css?family=Poppins:200,200i,300,400,500,500i,600,600i,700,700i,800,800i,900');
body {
font-family: 'Poppins', sans-serif;
line-height: 1.7;
font-size: 15px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Poppins', sans-serif;
font-weight: 600;
}
.aligncenter {
display: block;
margin: 0 auto;
text-align: center;
}
.alignleft {
float: left;
margin-right: 15px;
}
.alignright {
float: right;
margin-left: 15px;
}
h1,
.h1 {
font-size: 60px;
}
h2,
.h2 {
font-size: 36px;
}
h3,
.h3 {
font-size: 32px;
}
h4,
.h4 {
font-size: 24pc;
}
h5,
.h5 {
font-size: 21px;
}
img {
max-width: 100%;
height: auto;
}
body {
line-height: 1.7;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 700;
-ms-word-wrap: break-word;
word-wrap: break-word;
}
a:hover,
a:focus {
text-decoration: none;
}
a {
color: #278cc1;
}
img {
max-width: 100%;
height: auto;
}
input[type=text],
input[type=email],
input[type=tel],
input[type=search],
input[type=url],
input[type=password],
textarea {
background: #f5f8f9;
border: 1px solid #e8eef1;
width: 100%;
padding: 15px;
}
input:focus,
textarea:focus,
select:focus,
button:focus {
outline: none;
}
a:hover {
text-decoration: none!important;
}
input[type=text],
input[type=email],
input[type=tel],
input[type=search],
input[type=url],
input[type=password],
textarea {
background: #F5F8F9;
border: 1px solid #D9E4EA;
max-width: 100%;
padding: 10px;
}
input[type=submit],
button[type=submit] {
background: #1e71f9;
color: #fff;
border: none;
padding: 11px 20px;
text-transform: uppercase;
font-weight: 700;
cursor: pointer;
}
.screen-reader-text {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment