Difference between revisions of "MediaWiki:Common.css"
Jump to navigation
Jump to search
James Hare (talk | contribs) (clearly I don't know how to CSS) |
SuperHamster (talk | contribs) (Styling inputs) |
||
Line 1: | Line 1: | ||
@import url(//wikimediadc.org/index.php?title=MediaWiki:Common.css&action=raw&ctype=text/css); |
@import url(//wikimediadc.org/index.php?title=MediaWiki:Common.css&action=raw&ctype=text/css); |
||
+ | |||
+ | input[type=text] |
||
+ | { |
||
+ | border: 3px solid #ccc; |
||
+ | box-sizing: border-box; |
||
+ | margin: 8px 0; |
||
+ | outline: none; |
||
+ | padding: 12px 10px; |
||
+ | transition: .5s; |
||
+ | -webkit-transition: .5s; |
||
+ | width:100%; |
||
+ | } |
||
+ | |||
+ | input[type=text]:focus |
||
+ | { |
||
+ | border: 3px solid #555; |
||
+ | } |
Revision as of 06:10, 28 July 2019
@import url(//wikimediadc.org/index.php?title=MediaWiki:Common.css&action=raw&ctype=text/css);
input[type=text]
{
border: 3px solid #ccc;
box-sizing: border-box;
margin: 8px 0;
outline: none;
padding: 12px 10px;
transition: .5s;
-webkit-transition: .5s;
width:100%;
}
input[type=text]:focus
{
border: 3px solid #555;
}