Spaces:
Running
Running
File size: 2,835 Bytes
61e59f4 4edb0a8 61e59f4 4edb0a8 61e59f4 5be30bb 61e59f4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
/* Fonts */
@font-face {
font-family: 'WinThreeOne';
src: url('fonts/w95fa.woff2') format('woff2'),
url('fonts/w95fa.woff') format('woff');
}
@font-face {
font-family: 'DOS';
src: url('fonts/LessPerfectDOSVGA.woff2') format('woff2'),
url('fonts/LessPerfectDOSVGA.woff') format('woff');
}
/* Overall */
html, body {
width:100%;
height:100%;
margin:0;
overflow: hidden;
font-family: 'WinThreeOne', sans-serif;
background-color: #00ADAC;
font-size: 12px;
font-smooth: never;
-webkit-font-smoothing : none;
}
/* Windows */
.window {
padding: 4px;
background-color: white;
box-shadow:
inset 0 0 0 1px black,
inset 0 0 0 3px lightgrey,
inset 0 0 0 4px black;
}
.windowheader {
background-color: lightgrey;
color: black;
border-bottom: 1px solid black;
font-size: 14px;
height: 20px;
}
.selectedwindow .windowheader {
background-color: darkblue;
color: white;
}
.windowtitle {
padding: 2px;
line-height: 16px;
text-align: center;
cursor: default;
}
.windowclose {
float: left;
display: inline-block;
width: 15px;
height: 19px;
padding: 0 0 1px 5px;
background-color: lightgrey;
border-right: 1px solid black;
font-size: 20px;
color: white;
font-weight: bold;
-webkit-text-stroke-width: 0.5px;
-webkit-text-stroke-color: black;
text-shadow: 1px 1px darkgrey;
cursor: default;
}
.windowmenubar {
background-color: white;
border-bottom: 1px solid black;
font-size: 14px;
height: 12px;
padding: 4px;
line-height: 16px;
cursor: default;
}
.windowclose::before {
content: '-';
}
.ui-icon-gripsmall-diagonal-se {
background-image: none !important;
}
/* Window contents */
.windowinner {
height: calc(100% - 21px);
width: 100%;
overflow: hidden;
}
.windowmenubar + .windowinner {
height: calc(100% - 42px) !important;
}
.fullwindowhtml {
padding: 0px 8px;
}
textarea.fullwindowtextarea {
padding: 5px;
width: 100%;
height: 100%;
resize: none;
border: none;
outline: none;
font-family: 'WinThreeOne', sans-serif;
font-size: 12px;
}
textarea.fullwindowdosprompt {
padding: 5px;
width: 100%;
height: 100%;
resize: none;
border: none;
outline: none;
background-color: black;
color: lightgrey;
font-family: 'DOS', monospace;
font-size: 16px;
}
/* Icons */
.icon {
display: inline-block;
margin: 10px;
text-align: center;
}
.icon p {
display: block;
margin: 5px auto 0 auto;
padding: 2px;
cursor: default;
}
.icon p.highlight {
background-color: darkblue;
color: white;
}
/* DOOM */
#doomcanvas {
background-color: black;
width: 640px;
height: 480px;
} |