1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /* styles */
- /* called by your view template */
- /* You might want to try something fancier: */
- /* less: http://lesscss.org/ */
- * {
- box-sizing: border-box;
- }
- body {
- font-family: helvetica, arial, sans-serif;
- margin: 25px;
- }
- h1 {
- font-weight: bold;
- color: pink;
- }
- .bold {
- font-weight: bold;
- }
- p {
- max-width: 600px;
- }
- form {
- margin-bottom: 25px;
- padding: 15px;
- background-color: cyan;
- display: inline-block;
- width: 100%;
- max-width: 340px;
- border-radius: 3px;
- }
- input {
- display: block;
- margin-bottom: 10px;
- padding: 5px;
- width: 100%;
- border: 1px solid lightgrey;
- border-radius: 3px;
- font-size: 16px;
- }
- button {
- font-size: 16px;
- border-radius: 3px;
- background-color: lightgrey;
- border: 1px solid grey;
- box-shadow: 2px 2px teal;
- cursor: pointer;
- }
- button:hover {
- background-color: yellow;
- }
- button:active {
- box-shadow: none;
- }
- li {
- margin-bottom: 5px;
- }
- footer {
- margin-top: 50px;
- padding-top: 25px;
- border-top: 1px solid lightgrey;
- }
- footer > a {
- color: #BBBBBB;
- }
- .nicejob {
- text-decoration: line-through;
- }
|