tagwiki/resources/style.css

52 lines
933 B
CSS
Raw Normal View History

2020-05-11 06:23:38 +00:00
body {
2020-05-13 06:53:33 +00:00
max-width: 50em;
2020-05-11 06:23:38 +00:00
margin: 0 auto;
2020-05-11 00:54:21 +00:00
}
2020-05-12 04:00:44 +00:00
a.pure-button {
padding: .5em 1em;
}
2020-05-11 06:23:38 +00:00
.button-warning {
color: white;
background: rgb(223, 117, 20);
}
.button-green {
color: white;
background: rgb(28, 184, 65);
2020-05-11 00:54:21 +00:00
}
2020-05-13 06:53:33 +00:00
.float-right {
float: right;
}
2020-05-11 00:54:21 +00:00
/* TOOD: make the whole form exactly fit the screen (including the buttons) */
textarea {
height: 90vh;
width: 100%;
}
2020-05-13 06:53:33 +00:00
/* nice glow on selected stuff */
input[type=text], textarea {
/*
-webkit-transition: all 0.30s ease-in-out;
-moz-transition: all 0.30s ease-in-out;
-ms-transition: all 0.30s ease-in-out;
-o-transition: all 0.30s ease-in-out;
outline: none;
padding: 3px 0px 3px 3px;
margin: 5px 1px 3px 0px;
border: 1px solid #DDDDDD;
*/
}
input[type=text]:focus, textarea:focus, a:focus {
box-shadow: 0 0 10px rgba(81, 203, 238, 1);
/*
padding: 3px 0px 3px 3px;
margin: 5px 1px 3px 0px;
border: 1px solid rgba(81, 203, 238, 1);
*/
}