Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
public_html
/
wp-content
/
themes
/
profund
/
assets
/
css
/
Editing: normalize.css
/* -------------------------- =======CSS Indexing======= -------------------------- 1. Default CSS 2. Input-Box-Style 3. Posts and pages 4. Comment-Style 5. Media-Style 6. Alignment-Style 7. WordPress-Post-Caption-Style 8. Text meant only for screen readers. 9. Post-Gallery-Style ----------------------------*/ /*-- 1. Default CSS --*/ html { -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; outline: none; } body { margin: 0; padding: 0; -ms-word-wrap: break-word; word-wrap: break-word; font-family: "Karla", sans-serif; font-weight: 400; font-size: 16px; line-height: 1.9em; color: #6e7c90; } html, body { height: 100%; width: 100%; } ::-webkit-input-placeholder { /* Chrome/Opera/Safari */ color: #6e7c90; } ::-moz-placeholder { /* Firefox 19+ */ color: #6e7c90; } :-ms-input-placeholder { /* IE 10+ */ color: #6e7c90; } :-moz-placeholder { /* Firefox 18- */ color: #6e7c90; } /*---------------------- 01. Body-Style ------------------------*/ input:focus, button:focus, a:focus, a:hover { text-decoration: none; outline: none; color: #55c882; } h1, h2, h3, h4, h5, h6 { margin: 0 0 15px; line-height: 1.3; font-weight: 600; color: #000c35; letter-spacing: -1px; font-family: "Source Serif Pro", serif; } /* Remove Chrome Input Field's Unwanted Yellow Background Color */ input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus { -webkit-box-shadow: 0 0 0px 1000px white inset !important; } p { margin: 0 0 15px; } a { text-decoration: none; outline: none; transition: 0.4s; color: #1c223a; } input:focus, button:focus, a:focus, a:hover { text-decoration: none; outline: none; } strong { color: #191e23; font-weight: 600; } article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden], template { display: none; } abbr[title] { border-bottom: 1px dotted; } b, strong { font-weight: 600; } mark { background: #ff0; color: #000; } small { font-size: 80%; } big { font-size: 125%; } sub, sup { font-size: 12px; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } img { border: 0; max-width: 100%; height: auto; } svg:not(:root) { overflow: hidden; } pre { display: block; font-family: "Courier 10 Pitch", Courier, monospace; padding: 30px; margin: 0 0 15px; line-height: 1.6em; font-size: 14px; word-break: break-all; word-wrap: break-word; background-color: #f5f5f5; overflow: auto; border: none; border-radius: 5px; box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1); } button { overflow: visible; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } button[disabled], html input[disabled] { cursor: default; } input { line-height: normal; } input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } fieldset { border: 1px solid #e641cd; margin: 0 2px; padding: 0px 40px 30px 40px; } legend { border: 0; padding: 0; } textarea { overflow: auto; height: 120px; } optgroup { font-weight: bold; } dfn, cite, em, i { font-style: italic; } blockquote { padding: 30px 30px 30px 100px !important; background-color: #55c882; color: #ffffff; border: none; position: relative; text-align: left; } blockquote:before { position: absolute; top: calc(50% - 20px); left: 30px; font-size: 40px; line-height: 40px; color: #ffffff; font-family: "Font Awesome 5 Pro"; content: "\f10d"; } blockquote a, blockquote cite { font-size: 18px; font-weight: 400; text-decoration: none; color: rgba(255, 255, 255, 0.8); font-style: normal; } blockquote a:hover { color: #ffffff; text-decoration: underline; } address { margin: 0 0 1.5em; line-height: inherit; } code, kbd, tt, var { font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; font-size: 15px; padding-right: 10px; padding-left: 10px; display: inline-block; } abbr, acronym { border-bottom: 1px dotted #606060; cursor: help; } mark, ins { background: #fff9c0; text-decoration: none; padding: 0 4px; border-radius: 2px; } hr { background-color: #ededed; border: 0; height: 1px; } table, table th, table td { border: 1px solid rgba(46, 56, 65, 0.1); } dd, dt { line-height: inherit; } dt { font-weight: bold; } dd { margin: 0 1.5em 1.5em; } table { border-collapse: collapse; border-spacing: 0; margin: 0 0 1.5em; width: 100%; } td, th { padding: 10px; } /*-- 2. Input-Box-Style --*/ select, input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea { border: 1px solid rgba(0, 0, 0, 0.2); padding: 13px; background-color: #ffffff; margin-bottom: 15px; border-radius: 1px; color: #001157; width: 100%; transition: 0.3s; } button, input[type="button"], input[type="reset"], input[type="submit"] { transition: 0.3s; } select { border: 1px solid rgba(0, 0, 0, 0.2); color: #1c223a; } textarea { width: 100%; } /*-- 3. Posts and pages --*/ .sticky { display: block; } .updated:not(.published) { display: none; } .page-content, .entry-content, .entry-summary { margin: 1.5em 0 0; } .page-links { clear: both; margin: 0 0 1.5em; } /*-- 4. Comment-Style --*/ .comment-content a { word-wrap: break-word; } .bypostauthor { display: block; } /*-- 5. Media-Style --*/ .page-content .wp-smiley, .entry-content .wp-smiley, .comment-content .wp-smiley { border: none; margin-bottom: 0; margin-top: 0; padding: 0; } iframe { width: 100%; } iframe, object { max-width: 100%; } /*-- 6. Alignment-Style --*/ .alignnone { margin: 5px 20px 20px 0; } .aligncenter, div.aligncenter { display: block; margin: 5px auto 5px auto; } .alignright { float: right; margin: 5px 0 20px 20px; } .alignleft { float: left; margin: 5px 20px 20px 0; } a img.alignright { float: right; margin: 5px 0 20px 20px; } a img.alignnone { margin: 5px 20px 20px 0; } a img.alignleft { float: left; margin: 5px 20px 20px 0; } a img.aligncenter { display: block; margin-left: auto; margin-right: auto; } /*-- 7. WordPress-Post-Caption-Style --*/ .wp-caption { background: #fff; max-width: 96%; padding: 5px 3px 10px; } .wp-caption.alignnone { margin: 5px 20px 20px 0; } .wp-caption.alignleft { margin: 5px 20px 20px 0; } .wp-caption.alignright { margin: 5px 0 20px 20px; } .wp-caption img { border: 0 none; height: auto; margin: 0; max-width: 98.5%; padding: 0; width: auto; } figcaption, .wp-caption p.wp-caption-text { margin: 10px 0 0; padding: 0 4px 5px; } /*-- 8. Text meant only for screen readers. --*/ .screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; } .screen-reader-text:focus { background-color: #f1f1f1; border-radius: 3px; box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); clip: auto !important; color: #21759b; display: block; font-weight: bold; height: auto; left: 5px; line-height: normal; padding: 15px 23px 14px; text-decoration: none; top: 5px; width: auto; z-index: 100000; } /*-- 9. Post-Gallery-Style --*/ .gallery { margin-bottom: 1.5em; display: flex; flex-wrap: wrap; } .gallery .gallery-item { margin: 5px; } .gallery .gallery-item a { display: block; position: relative; z-index: 1; border-radius: 3px; overflow: hidden; } .gallery-item { display: inline-block; text-align: center; vertical-align: top; width: 100%; } .gallery-columns-1 .gallery-item { margin-bottom: 30px; } .gallery-columns-2 .gallery-item { max-width: calc(50% - 15px); border-radius: 3px; overflow: hidden; margin-bottom: 30px; } .gallery-columns-3 .gallery-item { max-width: calc(33.33% - 10px); border-radius: 3px; overflow: hidden; margin-bottom: 20px; } .gallery-columns-4 .gallery-item { max-width: calc(25% - 10px); border-radius: 3px; overflow: hidden; margin-bottom: 20px; } .gallery-columns-5 .gallery-item { max-width: calc(20% - 5px); border-radius: 2px; overflow: hidden; margin-bottom: 10px; } .gallery-columns-6 .gallery-item { max-width: calc(16.66% - 5px); border-radius: 2px; overflow: hidden; margin-bottom: 10px; } .gallery-columns-7 .gallery-item { max-width: calc(14.28% - 5px); border-radius: 2px; overflow: hidden; margin-bottom: 10px; } .gallery-columns-8 .gallery-item { max-width: calc(12.5% - 5px); border-radius: 2px; overflow: hidden; margin-bottom: 10px; } .gallery-columns-9 .gallery-item { max-width: calc(11.11% - 5px); border-radius: 2px; overflow: hidden; margin-bottom: 10px; } .gallery-caption { display: block; } .mejs-audio { margin-bottom: 30px; } .alignfull, .alignwide { width: 100%; position: relative; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); text-align: center; padding: 15px; background-color: #ffffff; border: 1px solid rgba(0, 0, 0, 0.1); } .alignwide { max-width: 100%; } .has-strong-magenta-background-color { background-color: #313131; } .has-strong-magenta-color { color: #f78da7; } .has-regular-font-size { font-size: 16px; } .has-strong-red-background-color, .has-strong-red-color { color: red; }
Save
Cancel