This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * { | |
| border: 1px solid red; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| li:not(:last-child) { | |
| border-bottom: 1px solid; | |
| } | |
| or | |
| li + li { | |
| border-top: 1px solid; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blockquote:before { | |
| content: ""; | |
| display:block; | |
| height:225px; | |
| width:225px; | |
| background-size: 225px 225px; | |
| background-image: url(test.svg); | |
| background-repeat: no-repeat; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://docs.generatepress.com/article/adding-local-fonts/ | |
| https://google-webfonts-helper.herokuapp.com/fonts | |
| /* Local Fonts */ | |
| /* oswald-600 - latin */ | |
| @font-face { | |
| font-family: 'Oswald'; | |
| font-style: normal; | |
| font-weight: 600; | |
| font-display: swap; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Add to functions.php | |
| //Include Font Awesome Library via their CDN | |
| add_action( 'wp_head', 'tu_font_awesome_css' ); | |
| function tu_font_awesome_css() { | |
| echo '<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.9/css/all.css" integrity="sha384-5SOiIsAziJl6AWe0HWRKTXlfcSHKmYV4RBF18PPJ173Kzn7jzMyFuTtk8JA7QQG1" crossorigin="anonymous">'; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .bg-img { | |
| background: linear-gradient(rgba(232, 66, 244,0.7),rgba(98, 65, 244,0.1)), url(https://picsum.photos/2000/1080/?image=1068); | |
| background-position: center; | |
| background-size: cover; | |
| background-repeat: no-repeat; | |
| height: 100vh; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @keyframes slideInFromLeft { | |
| 0% { | |
| transform: translatey(5%); | |
| opacity: 0; | |
| } | |
| 100% { | |
| transform: translatey(0); | |
| opacity: 1; | |
| } | |
| } |