Core.css
How do I make an core.css?
What is a core.css? How do you make a core.css? This script and codes were developed by Englishextra on 17 January 2023, Tuesday.
Core.css - Script Codes HTML Codes
<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Core.css</title> <style> /* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */ /* * Fonts **********************************************************/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700");
@import url("https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css");
/* * Media Queries **********************************************************/
/* * Reset **********************************************************/
*, *:before, *:after { margin: 0; padding: 0; box-sizing: border-box;
}
html { height: 100%; overflow-y: scroll;
}
body { height: 100%; font-family: 'Open Sans', sans-serif; font-size: 13px; line-height: 1; color: #555; background-color: #eee; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 { margin: 0 0 20px; font-size: 26px; font-weight: 400;
}
a { color: #59d; text-decoration: none; cursor: pointer;
}
p { margin: 0 0 20px; line-height: 1.5;
}
ul { margin: 0 0 20px; list-style: none;
}
/* * Forms **********************************************************/
button,
input,
select,
textarea { font-family: inherit; font-size: 100%; vertical-align: baseline; border: 0; outline: 0;
}
button::-moz-focus-inner,
input::-moz-focus-inner { border: 0; padding: 0;
}
input[type='text'] { padding: 10px 15px; border: 1px solid #bbb; background-color: #fff;
}
button[type='button'],
button[type='submit'] { padding: 10px 15px; font-weight: 600; color: #fff; border: 1px solid #37b; background-color: #59d; cursor: pointer;
}
/* * Custom Inputs **********************************************************/
.custom { display: inline-block; position: relative; margin: 0 20px 20px 0;
}
.custom label { padding: 0 0 0 28px; cursor: pointer;
}
.custom label:before { content: '\f00c'; position: absolute; top: -4px; left: 0; display: block; width: 21px; height: 21px; font-family: fontawesome; line-height: 19px; text-align: center; color: #fff; border: 1px solid #bbb; background: #fff;
}
.custom input { position: absolute; opacity: 0;
}
.custom input[type='radio'] ~ label:before { content: '\f111'; font-size: 8px; border-radius: 50%;
}
.custom input:checked ~ label:before { color: #555;
}
/* * Tables **********************************************************/
table { width: 100%; margin: 0 0 20px; border-collapse: collapse; border: 1px solid #bbb; background-color: #fff;
}
th, td { padding: 10px; border-right: 1px solid #bbb;
}
th { font-weight: 600; background: #ddd;
}
tr:nth-child(even) { background: #eee;
}
/* * Clearfix **********************************************************/
.cf:before, .cf:after { content: ' '; display: table;
}
.cf:after { clear: both;
}
/* * Layout **********************************************************/
.wrapper { padding: 50px;
}
.list li { margin: 0 0 10px;
}
.list li:before { content: '\f00c'; margin-right: 5px; font-family: fontawesome; color: #5a5;
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <div class="wrapper"> <h1>Core.css</h1> <p> Lightweight core for brand new projects. </p> <ul class="list"> <li>Common Reset</li> <li>Minimal, fast & clean Code</li> <li>Media Query Mixin</li> <li>Custom Inputs</li> <li>Ready-to-use lists and tables</li> </ul> <p> <input type="text" placeholder="Placeholder" /> <button type="button">Button</button> <button type="submit">Submit</button> </p> <div class="custom"> <input id="i1" type="radio" name="radio" checked /> <label for="i1">Radio</label> </div> <div class="custom"> <input id="i2" type="radio" name="radio" /> <label for="i2">Radio</label> </div> <div class="custom"> <input id="i3" type="checkbox" checked /> <label for="i3">Check</label> </div> <div class="custom"> <input id="i4" type="checkbox" /> <label for="i4">Check</label> </div> <table> <tr> <th>Head</th> <th>Head</th> <th>Head</th> <th>Head</th> <th>Head</th> </tr> <tr> <td>Table</td> <td>Table</td> <td>Table</td> <td>Table</td> <td>Table</td> </tr> <tr> <td>Table</td> <td>Table</td> <td>Table</td> <td>Table</td> <td>Table</td> </tr> <tr> <td>Table</td> <td>Table</td> <td>Table</td> <td>Table</td> <td>Table</td> </tr> <tr> <td>Table</td> <td>Table</td> <td>Table</td> <td>Table</td> <td>Table</td> </tr> </table>
</div>
</body>
</html>
Core.css - Script Codes CSS Codes
/* * Fonts **********************************************************/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700");
@import url("https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css");
/* * Media Queries **********************************************************/
/* * Reset **********************************************************/
*, *:before, *:after { margin: 0; padding: 0; box-sizing: border-box;
}
html { height: 100%; overflow-y: scroll;
}
body { height: 100%; font-family: 'Open Sans', sans-serif; font-size: 13px; line-height: 1; color: #555; background-color: #eee; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 { margin: 0 0 20px; font-size: 26px; font-weight: 400;
}
a { color: #59d; text-decoration: none; cursor: pointer;
}
p { margin: 0 0 20px; line-height: 1.5;
}
ul { margin: 0 0 20px; list-style: none;
}
/* * Forms **********************************************************/
button,
input,
select,
textarea { font-family: inherit; font-size: 100%; vertical-align: baseline; border: 0; outline: 0;
}
button::-moz-focus-inner,
input::-moz-focus-inner { border: 0; padding: 0;
}
input[type='text'] { padding: 10px 15px; border: 1px solid #bbb; background-color: #fff;
}
button[type='button'],
button[type='submit'] { padding: 10px 15px; font-weight: 600; color: #fff; border: 1px solid #37b; background-color: #59d; cursor: pointer;
}
/* * Custom Inputs **********************************************************/
.custom { display: inline-block; position: relative; margin: 0 20px 20px 0;
}
.custom label { padding: 0 0 0 28px; cursor: pointer;
}
.custom label:before { content: '\f00c'; position: absolute; top: -4px; left: 0; display: block; width: 21px; height: 21px; font-family: fontawesome; line-height: 19px; text-align: center; color: #fff; border: 1px solid #bbb; background: #fff;
}
.custom input { position: absolute; opacity: 0;
}
.custom input[type='radio'] ~ label:before { content: '\f111'; font-size: 8px; border-radius: 50%;
}
.custom input:checked ~ label:before { color: #555;
}
/* * Tables **********************************************************/
table { width: 100%; margin: 0 0 20px; border-collapse: collapse; border: 1px solid #bbb; background-color: #fff;
}
th, td { padding: 10px; border-right: 1px solid #bbb;
}
th { font-weight: 600; background: #ddd;
}
tr:nth-child(even) { background: #eee;
}
/* * Clearfix **********************************************************/
.cf:before, .cf:after { content: ' '; display: table;
}
.cf:after { clear: both;
}
/* * Layout **********************************************************/
.wrapper { padding: 50px;
}
.list li { margin: 0 0 10px;
}
.list li:before { content: '\f00c'; margin-right: 5px; font-family: fontawesome; color: #5a5;
}

Developer | Englishextra |
Username | englishextra |
Uploaded | January 17, 2023 |
Rating | 3 |
Size | 4,958 Kb |
Views | 6,069 |
Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!
Name | Size |
QR code generating with vanilla js | 5,758 Kb |
Blog Article Template | 14,860 Kb |
Responsive CSS3 Columns with Horizontal Scroll | 7,115 Kb |
Parallax.js | 11,997 Kb |
Grid 2 Go | 3,049 Kb |
A Pen by englishextra | 6,117 Kb |
Typeboost.css | 25,474 Kb |
Ready-to-Go Three-columns Responsive Typography Template with Off-Canvas Navigation | 18,977 Kb |
Responsive Flexbox Administration | 7,376 Kb |
JSON based picture gallery with lazyloading | 10,270 Kb |
Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!
Name | Username | Size |
Em Test | Rodesco | 1,784 Kb |
Bootstrap 3 Price Table | Honglio | 2,655 Kb |
CSS Tooltips | Darylldoyle | 2,599 Kb |
Practice using Wixel | Emnk | 3,057 Kb |
Sticky notes with CSS3 | HaiNguyen007 | 2,146 Kb |
RWD Conversion Practice | Jxqr97 | 2,743 Kb |
Ball Physics | Getsetbro | 3,149 Kb |
Importable Clearfix | Corysimmons | 1,411 Kb |
Myprofile | SoufianeAbid | 2,451 Kb |
CSS3 Media Queries demo | Machal | 1,824 Kb |
Surf anonymously, prevent hackers from acquiring your IP address, send anonymous email, and encrypt your Internet connection. High speed, ultra secure, and easy to use. Instant setup. Hide Your IP Now!