/*
Theme Name: Console
Theme URI: https://github.com/scruffian/themes/tree/trunk/console
Author: Scruffian
Author URI: https://scruffian.com
Description: A theme that tries to mimic the look of a terminal.
Requires at least: 5.8
Tested up to: 5.9
Requires PHP: 5.7
Version: 1.0.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: console
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, rtl-language-support, theme-options, threaded-comments, translation-ready, wide-blocks
*/

textarea, input {
	background: none;
	border: none !important;
	color: var(--wp--preset--color--foreground);
	padding-left: 0 !important;
	padding-right: 0 !important;
	caret-color: var(--wp--preset--color--foreground);
	width:80%;
	position:center;
}

textarea:focus, input:focus {
	outline: none;
}

html, body {
  margin: 20;
  padding: 20;
  height: 100%;
}
    iframe {
      position: fixed;
      top: 0vh;
      left: 0vw;
      width: 100vw;
      height: 100vh;
      border: none;
    }

@media (max-width: 768px) {
  iframe {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }
}