mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 01:41:54 +02:00
23 lines
291 B
CSS
23 lines
291 B
CSS
|
* {
|
||
|
-webkit-box-sizing: border-box;
|
||
|
-moz-box-sizing: border-box;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: sans-serif;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
background: #EEE;
|
||
|
width: 50%;
|
||
|
margin-bottom: 1.0em;
|
||
|
}
|
||
|
|
||
|
.item {
|
||
|
border: 1px solid;
|
||
|
background: #09F;
|
||
|
width: 50px;
|
||
|
height: 50px;
|
||
|
}
|