|
| 1 | +.app { |
| 2 | + font-family: sans-serif; |
| 3 | + min-width: 300px; |
| 4 | + max-width: 600px; |
| 5 | + margin: 50px auto; |
| 6 | +} |
| 7 | + |
| 8 | +.app .gutter-left { |
| 9 | + margin-left: 9px; |
| 10 | +} |
| 11 | + |
| 12 | +.app .col-span-2 { |
| 13 | + grid-column: span 2; |
| 14 | +} |
| 15 | + |
| 16 | +.app .flex { |
| 17 | + display: flex; |
| 18 | + align-items: center; |
| 19 | + justify-content: center; |
| 20 | +} |
| 21 | + |
| 22 | +.app header { |
| 23 | + background-color: #143055; |
| 24 | + color: white; |
| 25 | + padding: 5px; |
| 26 | + border-radius: 3px; |
| 27 | +} |
| 28 | + |
| 29 | +.app main { |
| 30 | + padding: 0 36px; |
| 31 | +} |
| 32 | + |
| 33 | +.app p { |
| 34 | + text-align: center; |
| 35 | +} |
| 36 | + |
| 37 | +.app h1 { |
| 38 | + text-align: center; |
| 39 | + margin-left: 18px; |
| 40 | + font-size: 24px; |
| 41 | +} |
| 42 | + |
| 43 | +.app h2 { |
| 44 | + text-align: center; |
| 45 | + font-size: 20px; |
| 46 | + margin: 40px 0 10px 0; |
| 47 | +} |
| 48 | + |
| 49 | +.app .resources { |
| 50 | + text-align: center; |
| 51 | + list-style: none; |
| 52 | + padding: 0; |
| 53 | + display: grid; |
| 54 | + grid-gap: 9px; |
| 55 | + grid-template-columns: 1fr 1fr; |
| 56 | +} |
| 57 | + |
| 58 | +.app .resource { |
| 59 | + color: #0094ba; |
| 60 | + height: 36px; |
| 61 | + background-color: rgba(0, 0, 0, 0); |
| 62 | + border: 1px solid rgba(0, 0, 0, 0.12); |
| 63 | + border-radius: 4px; |
| 64 | + padding: 3px 9px; |
| 65 | + text-decoration: none; |
| 66 | +} |
| 67 | + |
| 68 | +.app .resource:hover { |
| 69 | + background-color: rgba(68, 138, 255, 0.04); |
| 70 | +} |
| 71 | + |
| 72 | +.app pre { |
| 73 | + padding: 9px; |
| 74 | + border-radius: 4px; |
| 75 | + background-color: black; |
| 76 | + color: #eee; |
| 77 | +} |
| 78 | + |
| 79 | +.app details { |
| 80 | + border-radius: 4px; |
| 81 | + color: #333; |
| 82 | + background-color: rgba(0, 0, 0, 0); |
| 83 | + border: 1px solid rgba(0, 0, 0, 0.12); |
| 84 | + padding: 3px 9px; |
| 85 | + margin-bottom: 9px; |
| 86 | +} |
| 87 | + |
| 88 | +.app summary { |
| 89 | + outline: none; |
| 90 | + height: 36px; |
| 91 | + line-height: 36px; |
| 92 | +} |
| 93 | + |
| 94 | +.app .github-star-container { |
| 95 | + margin-top: 12px; |
| 96 | + line-height: 20px; |
| 97 | +} |
| 98 | + |
| 99 | +.app .github-star-container a { |
| 100 | + display: flex; |
| 101 | + align-items: center; |
| 102 | + text-decoration: none; |
| 103 | + color: #333; |
| 104 | +} |
| 105 | + |
| 106 | +.app .github-star-badge { |
| 107 | + color: #24292e; |
| 108 | + display: flex; |
| 109 | + align-items: center; |
| 110 | + font-size: 12px; |
| 111 | + padding: 3px 10px; |
| 112 | + border: 1px solid rgba(27, 31, 35, 0.2); |
| 113 | + border-radius: 3px; |
| 114 | + background-image: linear-gradient(-180deg, #fafbfc, #eff3f6 90%); |
| 115 | + margin-left: 4px; |
| 116 | + font-weight: 600; |
| 117 | +} |
| 118 | + |
| 119 | +.app .github-star-badge:hover { |
| 120 | + background-image: linear-gradient(-180deg, #f0f3f6, #e6ebf1 90%); |
| 121 | + border-color: rgba(27, 31, 35, 0.35); |
| 122 | + background-position: -0.5em; |
| 123 | +} |
| 124 | +.app .github-star-badge .material-icons { |
| 125 | + height: 16px; |
| 126 | + width: 16px; |
| 127 | + margin-right: 4px; |
| 128 | +} |
0 commit comments