2018-11-13 21:43:08 -05:00
|
|
|
/*
|
|
|
|
Theme Name: Motherfucking Wordpress Theme
|
2024-02-18 15:05:34 -05:00
|
|
|
Theme URI: https://code.jacobhaddon.com/Wordpress/mfwpt
|
2018-11-13 21:43:08 -05:00
|
|
|
Author: Jacob Haddon
|
|
|
|
Author URI: https://jacobhaddon.com
|
2024-02-18 15:05:34 -05:00
|
|
|
Description: A no frills, fast loading Wordpress theme
|
2018-11-13 21:43:08 -05:00
|
|
|
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
|
2020-03-19 19:10:38 -04:00
|
|
|
Tags:
|
2024-02-18 15:05:34 -05:00
|
|
|
This theme, like WordPress, is licensed under the GPLv2.0.
|
2018-11-13 21:43:08 -05:00
|
|
|
This theme, like motherfuckingwebsite.com is satire
|
|
|
|
Use it to make something cool, have fun, and share what you've learned with others.
|
2018-11-16 11:25:14 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
body{
|
2018-11-18 11:09:20 -05:00
|
|
|
margin:40px auto;
|
|
|
|
max-width:650px;
|
|
|
|
line-height:1.6;
|
|
|
|
font-size:18px;
|
|
|
|
padding:0 10px
|
|
|
|
}
|
2018-11-16 11:25:14 -05:00
|
|
|
|
|
|
|
h1,h2,h3{line-height:1.2}
|
|
|
|
|
2018-11-18 11:09:20 -05:00
|
|
|
/* menu styles */
|
2020-03-19 19:10:38 -04:00
|
|
|
.mfwpt_menu ul {list-style: none; padding:0px;}
|
|
|
|
.mfwpt_menu ul ul {display: none;position:absolute;background-color: white;}
|
2018-11-16 11:25:14 -05:00
|
|
|
.mfwpt_menu li {display:inline-block; padding-right: 20px;}
|
2020-03-19 19:10:38 -04:00
|
|
|
.mfwpt_menu li a {text-decoration: none;}
|
2018-11-18 11:09:20 -05:00
|
|
|
.mfwpt_menu li:hover ul {display: block;}
|
2020-03-19 19:10:38 -04:00
|
|
|
.mfwpt_menu li li {display:block;}
|
|
|
|
|
|
|
|
.mfwpt_menu li ul {}
|
|
|
|
.mfwpt_menu li li a {}
|
|
|
|
.mfwpt_menu{}
|
2020-11-19 22:17:01 -05:00
|
|
|
|
|
|
|
@media screen and (prefers-color-scheme: dark) {
|
2020-11-20 13:22:33 -05:00
|
|
|
body{ color: white;}
|
|
|
|
body, .mfwpt_menu ul ul {background-color: black;}
|
2020-11-19 22:17:01 -05:00
|
|
|
}
|
|
|
|
|