ref: cycles
src/static/stylesheet.css
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
/* * Simple and minimal css */ body { margin: 40px auto; max-width: 800px; padding: 0 10px; color: #555; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 110%; text-rendering: optimizeLegibility; line-height: 1.6; } a { color: #3366CC; border: 1px solid rgba(255, 255, 255, 0); } a:focus { outline: 0; color: red; text-decoration: none; border: 1px dotted #aaa; } a:hover { color: #333; text-decoration: none; } h1 { font-size: 2.1rem; } h1, h2, h3 { color: #000; line-height: 1.2; font-weight: normal; } h1, h2 { color: #444 } ul { margin: 0; padding: 0; margin-left: 35px; } li { margin-bottom: 10px; line-height: 18px; } li ul { margin-top: 5px; } .form-section label { display: block; margin-top: 5px; } .form-action { margin-top: 5px; } .white-space-pre { white-space: pre; } .mt-5 { margin-top: 5px; } .mb-5 { margin-bottom: 5px; } .ml-5 { margin-left: 5px; } .mr-5 { margin-right: 5px; } .pt-5 { padding-top: 5px; } .pb-5 { padding-bottom: 5px; } .pl-5 { padding-left: 5px; } .pr-5 { padding-right: 5px; } .p-5 { padding: 5px; } .m-5 { margin: 5px; } .current-cycle { background-color: #ccc; } |