|
1 |
| -/*add normalize css*/ |
2 | 1 | * {
|
3 |
| - margin:0; |
4 |
| - padding:0; |
5 |
| - font-size: sans-serif; |
6 |
| - box-sizing: border-box; |
7 |
| - -o-box-sizing: border-box; |
8 |
| - -moz-box-sizing: border-box; |
9 |
| - -webkit-box-sizing: border-box; |
| 2 | + margin: 0; |
| 3 | + padding: 0; |
| 4 | + font-size: sans-serif; |
| 5 | + box-sizing: border-box; |
| 6 | + -o-box-sizing: border-box; |
| 7 | + -moz-box-sizing: border-box; |
| 8 | + -webkit-box-sizing: border-box; |
| 9 | +} |
| 10 | +html, |
| 11 | +body { |
| 12 | + width: 100%; |
| 13 | + height: 100%; |
| 14 | +} |
| 15 | +body .main-container { |
| 16 | + width: 100%; |
| 17 | + height: 100%; |
| 18 | + display: flex; |
| 19 | + flex-direction: row; |
| 20 | + flex-wrap: nowrap; |
| 21 | + justify-content: flex-start; |
| 22 | + align-items: stretch; |
| 23 | +} |
| 24 | +body .main-container #stage { |
| 25 | + border: #888 solid 2px; |
| 26 | + background-color: #4a4a4a; |
| 27 | + width: 90%; |
| 28 | + display: flex; |
| 29 | + flex-direction: row; |
| 30 | + flex-wrap: nowrap; |
| 31 | + justify-content: center; |
| 32 | + align-items: flex-end; |
| 33 | + padding: 3% 5%; |
| 34 | +} |
| 35 | +body .main-container #stage .img-container { |
| 36 | + width: 80px; |
| 37 | + height: 100%; |
| 38 | + display: flex; |
| 39 | + flex-direction: row; |
| 40 | + flex-wrap: nowrap; |
| 41 | + justify-content: center; |
| 42 | + align-items: center; |
| 43 | +} |
| 44 | +body .main-container #stage .img-container .initial-img { |
| 45 | + width: 80px; |
| 46 | + height: 80px; |
| 47 | + transform: rotate(-90deg); |
| 48 | +} |
| 49 | +body .main-container #stage li { |
| 50 | + background-color: #00ffff; |
| 51 | + width: 100%; |
| 52 | + list-style-type: none; |
| 53 | + border: #000 dotted 0.1px; |
| 54 | +} |
| 55 | +body .main-container #dashboard { |
| 56 | + font-family: 'Noto Sans TC', 'Noto Sans JP', sans-serif; |
| 57 | + width: 10%; |
| 58 | + background-color: #4a4a4a; |
| 59 | + display: flex; |
| 60 | + flex-direction: column; |
| 61 | + flex-wrap: nowrap; |
| 62 | +} |
| 63 | +body .main-container #dashboard .algo-selector-container { |
| 64 | + width: 100%; |
| 65 | + margin-bottom: 1px; |
| 66 | + border: #ccc solid 2px; |
| 67 | +} |
| 68 | +body .main-container #dashboard .algo-selector-container .algo-label { |
| 69 | + font-size: 14px; |
| 70 | + display: block; |
| 71 | + color: white; |
| 72 | + background-color: #6a6a6a; |
| 73 | + padding: 6px 0; |
| 74 | + text-align: center; |
| 75 | +} |
| 76 | +body .main-container #dashboard .algo-selector-container .selector-container { |
| 77 | + width: 100%; |
| 78 | + background-color: #333; |
| 79 | + padding: 10px 0; |
| 80 | +} |
| 81 | +body .main-container #dashboard .algo-selector-container .selector-container .selector { |
| 82 | + border: none; |
| 83 | + width: 100%; |
| 84 | + color: white; |
| 85 | + background-color: #333; |
| 86 | +} |
| 87 | +body .main-container #dashboard .algo-selector-container .selector-container .selector:focus { |
| 88 | + outline: none; |
| 89 | +} |
| 90 | +body .main-container #dashboard .algo-selector-container .selector-container .options { |
| 91 | + color: white; |
| 92 | + background-color: #333; |
| 93 | +} |
| 94 | +body .main-container #dashboard .count-input-container { |
| 95 | + width: 100%; |
| 96 | + margin-bottom: 1px; |
| 97 | + border: #ccc solid 2px; |
| 98 | +} |
| 99 | +body .main-container #dashboard .count-input-container .count-label { |
| 100 | + font-size: 14px; |
| 101 | + display: block; |
| 102 | + color: white; |
| 103 | + background-color: #6a6a6a; |
| 104 | + padding: 6px 0; |
| 105 | + text-align: center; |
| 106 | +} |
| 107 | +body .main-container #dashboard .count-input-container .count-input { |
| 108 | + width: 100%; |
| 109 | + padding: 10px 0 10px 10px; |
| 110 | + color: white; |
| 111 | + background-color: #333; |
| 112 | +} |
| 113 | +body .main-container #dashboard .count-input-container .count-input:disabled { |
| 114 | + background-color: #ccc; |
| 115 | +} |
| 116 | +body .main-container #dashboard .mspf-input-container { |
| 117 | + width: 100%; |
| 118 | + margin-bottom: 1px; |
| 119 | + border: #ccc solid 2px; |
| 120 | +} |
| 121 | +body .main-container #dashboard .mspf-input-container .mspf-label { |
| 122 | + font-size: 14px; |
| 123 | + display: block; |
| 124 | + color: white; |
| 125 | + background-color: #6a6a6a; |
| 126 | + padding: 6px 0; |
| 127 | + text-align: center; |
| 128 | +} |
| 129 | +body .main-container #dashboard .mspf-input-container .mspf-input { |
| 130 | + width: 100%; |
| 131 | + padding: 10px 0 10px 10px; |
| 132 | + color: white; |
| 133 | + background-color: #333; |
| 134 | +} |
| 135 | +body .main-container #dashboard .mspf-input-container .mspf-input:disabled { |
| 136 | + background-color: #ccc; |
| 137 | +} |
| 138 | +body .main-container #dashboard .btn-tag { |
| 139 | + width: 80%; |
| 140 | + margin: 0 auto; |
| 141 | + border-radius: 10px; |
| 142 | + padding: 6px 4px; |
| 143 | + font-size: 16px; |
| 144 | + color: white; |
| 145 | + background-color: #333; |
| 146 | + margin-top: 10px; |
| 147 | +} |
| 148 | +body .main-container #dashboard .btn-tag:disabled { |
| 149 | + background-color: #ccc; |
| 150 | +} |
| 151 | +body .main-container #dashboard .btn-tag:disabled:hover { |
| 152 | + cursor: not-allowed; |
| 153 | +} |
| 154 | +body .main-container #dashboard .btn-tag:hover { |
| 155 | + cursor: pointer; |
| 156 | +} |
| 157 | +body .main-container #dashboard .footer-container { |
| 158 | + width: 100%; |
| 159 | + margin-top: auto; |
| 160 | +} |
| 161 | +body .main-container #dashboard .footer-container .footer-copyright { |
| 162 | + color: white; |
| 163 | + font-size: 16px; |
| 164 | + padding: 10px; |
| 165 | + text-align: center; |
| 166 | +} |
| 167 | +/* |
| 168 | +
|
| 169 | +* { |
| 170 | + |
| 171 | + |
10 | 172 | }
|
11 | 173 | html,body{
|
12 | 174 | width:100%;
|
13 | 175 | height:100%;
|
14 | 176 | }
|
15 | 177 | header{
|
16 |
| - background-color: black; |
17 |
| - height:8%; |
| 178 | + background: linear-gradient(to top, #000 , #333 , #555 , #777); |
18 | 179 | display:flex;
|
19 | 180 | align-items:center;
|
20 |
| - |
21 | 181 | }
|
22 | 182 |
|
23 | 183 | header h1{
|
24 |
| - letter-spacing: 0.15em; |
| 184 | + font-family: 'Noto Sans TC', 'Noto Sans JP', sans-serif; |
| 185 | + font-weight:100; |
| 186 | + letter-spacing: 3px; |
| 187 | + font-size:26px; |
25 | 188 | margin: 0 auto;
|
| 189 | + padding:10px 0; |
26 | 190 | color:white;
|
| 191 | + |
27 | 192 | }
|
28 | 193 |
|
29 | 194 | section{
|
| 195 | + border:#333 solid 1px; |
30 | 196 | height:90%;
|
31 | 197 | width:100%;
|
32 |
| - |
| 198 | + background-color:#3e3e3e; |
33 | 199 | }
|
34 | 200 |
|
35 | 201 | section article#stage{
|
36 | 202 | display:flex;
|
37 | 203 | align-items:center;
|
38 |
| - height:95%; |
| 204 | + height:90%; |
39 | 205 | overflow: hidden;
|
40 | 206 | padding:1% 5%;
|
41 | 207 | align-items:flex-end;
|
@@ -169,3 +335,5 @@ footer{
|
169 | 335 | footer h6{
|
170 | 336 | text-align:right;
|
171 | 337 | }
|
| 338 | +
|
| 339 | +*/ |
0 commit comments