:root {
--default-margin: 1em;
--default-font-size: 0.95em;
}
html, body {
color: #333;
text-align: left;
line-height: 1.2em;
font-family: "Gill Sans","Helvetica Neue",Helvetica,Optima,sans-serif;
margin: 0;
border: 0;
box-sizing: border-box;
font-size: var(--default-font-size);
min-height: calc( 100vh - 2em);
display: grid;
grid-template-rows: 120px 30px auto 30px;
grid-template-columns: auto;
font-weight: 300;
}
pre, textarea {tab-size: 4;}
div, section {
margin: 0;
padding: 0;
border: 0;
}
a {
color: #006600;
text-decoration: none;
}
.dark a {
color: #00FF00 !important;
text-decoration: none;
}
a.pltsm_link {
color: #0066FF;
text-decoration: none;
}
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:active {
color: #900;
text-decoration: underline;
}
a:hover { text-decoration: underline; }
th {
color: #333;
font-weight: 300;
text-align: left;
line-height: 1.2em;
padding: 0.5em;
}
h1 {
letter-spacing: 0.08em;
margin: var(--default-margin);
margin-top: 0;
}
h2 {
letter-spacing: 0.08em;
margin: var(--default-margin);
margin-top: 0;
}
h3 {
letter-spacing: 0.08em;
margin: var(--default-margin);
margin-top: 0;
}
h4 {
letter-spacing: 0.08em;
margin: var(--default-margin);
margin-top: 0;
}
iframe {
width: 100%;
min-height: 70vh;
border: 0;
}
hr {
border: none;
text-align: center;
color: #ccc;
}
/*form { margin: var(--default-margin); }*/
#pltsm-login-form {
width: 300px;
margin-right:auto;
margin-left:auto;
margin-top: 200px;
}
#pltsm-login-title {
margin-right:auto;
margin-left:auto;
width: 100%;
text-align: center;
font-weight: bolder;
margin-bottom: var(--default-margin);
}
#pltsm-login-user {
width: 100%;
margin-bottom: var(--default-margin);
height: 30px;
border-bottom: 1px lightgrey;
border-top-style: hidden;
border-right-style: hidden;
border-left-style: hidden;
border-bottom-style: solid;
outline: none;
}
#pltsm-login-password {
width: 100%;
margin-bottom: var(--default-margin);
height: 30px;
border-bottom: 1px lightgrey;
border-top-style: hidden;
border-right-style: hidden;
border-left-style: hidden;
border-bottom-style: solid;
outline: none;
}
#pltsm-login-submit {
width: 100%;
height: 25px;
border-radius: 25px;
border : none;
background: #aaeeaa;
}
hr:after {
content: "* * *";
letter-spacing: 0.5em;
}
pre {
font-size: var(--default-font-size);
font-weight: 300;
margin: var(--default-margin);
}
code {
font-family : monospace;
}
.vimeo {
border: 0;
width: 100%;
height: 56.25%;
}
::selection {
background: #ccc;
color: #0066ff;
}
p {
margin: var(--default-margin);
margin-bottom: 1em;
}
ul {
list-style-type: none;
margin: var(--default-margin);
margin-top: 0;
padding: 0;
}
#header {
margin : var(--default-margin);
padding-bottom: 20px;
order: 1;
}
#menu {
order: 2;
}
#menu a{
padding: 2px 4px;
cursor: pointer;
border-radius: 5px;
background-color: lightgrey;
color: black;
}
#menu a:hover{
color: white;
}
.button {
padding: 2px 4px;
cursor: pointer;
border-radius: 5px;
background-color: lightgrey;
color: black;
font-size: 10pt;
}
.logo {
width: auto;
height: auto;
}
#content {
order: 3;
}
#footer {
order: 4;
margin-bottom: 2em;
padding-bottom: 2em;
}
nav a { }
nav a:active {
color: #900;
text-decoration: none;
}
nav a:hover {
color: @link;
background-color: #ccc;
text-decoration: none;
}
p > img {
width: calc(100% + 32px);
margin-left: -16px;
}
.center {
display: block;
margin-right: auto;
margin-left: auto;
}
.fill {
width: 100%;
max-height: 800px;
overflow: hidden;
}
.blue { background-color: #CCF; }
.pltsm-search-input {
float: right;
width: 70px;
}
.pltsm-search-input:focus {
float: right;
width: 200px;
-webkit-transition: width 0.25s ease-in-out;
-moz-transition: width 0.25s ease-in-out;
-o-transition: width 0.25s ease-in-out;
transition: width 0.25s ease-in-out;
}
blink, .blink { animation: blinker 1s infinite; }
@keyframes blinker {
10% { opacity: 0;}
90% { opacity: 1;}
}
.vibrate {
animation: vibrator 0.5s infinite;
display: inline-block;
}
@keyframes vibrator {
0% { transform: translate(1.2px, 0.2px); }
10% { transform: translate(-0.2px, -0.2px); }
20% { transform: translate(-0.2px, 0px); }
30% { transform: translate(0.2px, 0.2px); }
40% { transform: translate(0.2px, -0.2px); }
50% { transform: translate(-0.2px, 0.2px); }
60% { transform: translate(-0.2px, 0.2px); }
70% { transform: translate(0.2px, 0.2px); }
80% { transform: translate(-0.2px, -0.2px); }
90% { transform: translate(0.2px, 0.2px); }
100% { transform: translate(0.2px, -0.2px); }
}
.spin {
display: inline-block;
-webkit-animation:spiner 4s linear infinite;
-moz-animation:spiner 4s linear infinite;
animation:spiner 4s linear infinite;
)
@-moz-keyframes spiner { 100% { -moz-transform: rotate(360deg); }}
@-webkit-keyframes spiner { 100% { -webkit-transform: rotate(360deg); }}
@keyframes spiner { 100% { transform:rotate(360deg); }}