mfwpt/style.css

44 lines
1.1 KiB
CSS

/*
Theme Name: Motherfucking Wordpress Theme
Theme URI: https://jacobhaddon.com/mfwpt
Author: Jacob Haddon
Author URI: https://jacobhaddon.com
Description: A no frills, fast loading site that works.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mfwpt
Tags:
This theme, like WordPress, is licensed under the GPL.
This theme, like motherfuckingwebsite.com is satire
Use it to make something cool, have fun, and share what you've learned with others.
*/
body{
margin:40px auto;
max-width:650px;
line-height:1.6;
font-size:18px;
padding:0 10px
}
h1,h2,h3{line-height:1.2}
/* menu styles */
.mfwpt_menu ul {list-style: none; padding:0px;}
.mfwpt_menu ul ul {display: none;position:absolute;background-color: white;}
.mfwpt_menu li {display:inline-block; padding-right: 20px;}
.mfwpt_menu li a {text-decoration: none;}
.mfwpt_menu li:hover ul {display: block;}
.mfwpt_menu li li {display:block;}
.mfwpt_menu li ul {}
.mfwpt_menu li li a {}
.mfwpt_menu{}
@media screen and (prefers-color-scheme: dark) {
body{ color: white;}
body, .mfwpt_menu ul ul {background-color: black;}
}