|
1 |
| -/* |
2 |
| - * This is a manifest file that'll be compiled into application.css, which will include all the files |
3 |
| - * listed below. |
4 |
| - * |
5 |
| - * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, |
6 |
| - * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path. |
7 |
| - * |
8 |
| - * You're free to add application-wide styles to this file and they'll appear at the bottom of the |
9 |
| - * compiled file so the styles you add here take precedence over styles defined in any styles |
10 |
| - * defined in the other CSS/SCSS files in this directory. It is generally better to create a new |
11 |
| - * file per style scope. |
12 |
| - * |
13 |
| - *= require_tree . |
14 |
| - *= require_self |
15 |
| - */ |
16 |
| - |
| 1 | +/* General |
| 2 | +---------------------------------------------------------*/ |
| 3 | +*, :after, :before { |
| 4 | + box-sizing: border-box; |
| 5 | +} |
17 | 6 | body{
|
18 |
| - background-color: #E4DD9C; |
| 7 | + background-color: #000; |
| 8 | + margin:0; |
19 | 9 | }
|
20 | 10 |
|
21 | 11 | div#mainContent{
|
22 |
| - background-color: #8BC34A; |
23 |
| - width: 725px; |
24 |
| - margin: 74px 0px 0px 9%; |
25 |
| - padding: 30px 60px 63px 0px; |
26 |
| - text-align: center; |
27 |
| - font-size: 3.5em; |
28 |
| - color: #505050; |
29 |
| - box-shadow: 13px 17px 41px #505050; |
| 12 | + background-color: #000; |
| 13 | + max-width:680px; |
| 14 | + width: 100%; |
| 15 | + margin: 0 auto; |
| 16 | + text-align: center; |
| 17 | + font-size: 3.5rem; |
| 18 | + color: #fff; |
| 19 | +} |
| 20 | + |
| 21 | +div#mainContent h1 { |
| 22 | + margin:0; |
30 | 23 | }
|
31 | 24 |
|
32 | 25 | div#mainContent ul{
|
33 |
| - list-style: none; |
| 26 | + list-style: none; |
| 27 | + margin: 0; |
| 28 | + padding: 0; |
| 29 | +} |
| 30 | + |
| 31 | + /* Select |
| 32 | +---------------------------------------------------------*/ |
| 33 | + |
| 34 | +li label { |
| 35 | + display:inline-block; |
| 36 | + margin: 0.5em 0; |
| 37 | + padding: 0.5em 0; |
| 38 | +} |
| 39 | + |
| 40 | +li.wifiNetwork { |
| 41 | + position: relative; |
| 42 | + display: inline-block; |
| 43 | + margin: 0; |
34 | 44 | }
|
35 | 45 |
|
36 |
| -div#mainContent li{ |
37 |
| - margin: 0px 0px 45px 0px; |
| 46 | +li.wifiNetwork:after { |
| 47 | + content: '▼'; |
| 48 | + position: absolute; |
| 49 | + width: 50px; |
| 50 | + color: #deab04; |
| 51 | + font-weight: bold; |
| 52 | + font-size: 2rem; |
| 53 | + right: 10px; |
| 54 | + bottom: 50px; |
| 55 | + border-radius: 3px; |
| 56 | + pointer-events: none; |
| 57 | + z-index: 2; |
| 58 | +} |
| 59 | + |
| 60 | +select.wifiNetworkInputs { |
| 61 | + position: relative; |
| 62 | + max-width:680px; |
| 63 | + width: 100vw; |
| 64 | + background: #111; |
| 65 | + color: #999; |
| 66 | + border: none; |
| 67 | + outline: none; |
| 68 | + font-size: 2.5rem; |
| 69 | + padding: 1em; |
| 70 | + margin: 0; |
| 71 | + border-radius: 3px; |
| 72 | + cursor: pointer; |
| 73 | + height: auto; |
| 74 | + -webkit-appearance: none; |
| 75 | + -moz-appearance: none; |
| 76 | + appearance: none; |
38 | 77 | }
|
39 | 78 |
|
40 | 79 | .wifiNetworkInputs{
|
41 |
| - width: 100%; |
42 |
| - font-size: .8em; |
43 |
| - color: #505050; |
| 80 | + max-width:680px; |
| 81 | + width: 100vw; |
| 82 | + padding:1em 0; |
| 83 | + font-size: .8em; |
| 84 | + color: #999; |
| 85 | + background: #111; |
| 86 | + border:#999 solid 1px; |
44 | 87 | }
|
45 | 88 |
|
46 | 89 | .wifiConnectButton{
|
47 |
| - width: 310px; |
48 |
| - height: 150px; |
49 |
| - margin: 68px 0px 105px 0px; |
50 |
| - background-color: #D6D2AA; |
51 |
| - border: 7px solid #505050; |
52 |
| - font-size: 1em; |
53 |
| - color: #505050; |
| 90 | + width: 310px; |
| 91 | + height: 150px; |
| 92 | + margin:1.5em 0 0 0; |
| 93 | + background-color: #deab04; |
| 94 | + font-size: 3rem; |
| 95 | + color: #fff; |
| 96 | + -webkit-appearance: none; |
| 97 | + -moz-appearance: none; |
| 98 | + appearance: none; |
| 99 | +} |
| 100 | + |
| 101 | +.reset input { |
| 102 | + background:#BF1A2F; |
| 103 | + border:#BF1A2F; |
| 104 | + color:white; |
| 105 | + padding:1em; |
| 106 | + margin-top:1.5em; |
| 107 | + font-size:1.5rem; |
| 108 | + -webkit-appearance: none; |
| 109 | + -moz-appearance: none; |
| 110 | + appearance: none; |
| 111 | +} |
| 112 | + |
| 113 | + /* Wifi Icon |
| 114 | +---------------------------------------------------------*/ |
| 115 | + |
| 116 | +.wifiIcon { |
| 117 | + padding: 20px; |
| 118 | +} |
| 119 | +.wifiIcon, .wifiIcon:before { |
| 120 | + display: inline-block; |
| 121 | + border: 60px double transparent; |
| 122 | + border-top-color: currentColor; |
| 123 | + border-radius: 50%; |
| 124 | +} |
| 125 | +.wifiIcon:before { |
| 126 | + content: ''; |
| 127 | + width: 0; height: 0; |
54 | 128 | }
|
0 commit comments