mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-20 20:11:53 +02:00
22 lines
291 B
CSS
22 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;
|
|
}
|