OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <style> | 2 <style> |
3 input { | 3 input { |
4 color: darkGray; | 4 color: #757575; |
5 } | 5 } |
6 | 6 |
7 input.red { | 7 input.red { |
8 color: rgb(100, 0, 0); | 8 color: rgb(100, 0, 0); |
9 } | 9 } |
10 | 10 |
11 .blue { | 11 .blue { |
12 color: blue; | 12 color: blue; |
13 } | 13 } |
14 | 14 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 <input class="blue" type="search" value="search"> | 48 <input class="blue" type="search" value="search"> |
49 <input class="blue" type="text" value="password"> | 49 <input class="blue" type="text" value="password"> |
50 <input class="blue" disabled value="disabled text"> | 50 <input class="blue" disabled value="disabled text"> |
51 </div> | 51 </div> |
52 | 52 |
53 <div> | 53 <div> |
54 Both: | 54 Both: |
55 <input class="prefixed-unprefixed" value="unprefixed"> | 55 <input class="prefixed-unprefixed" value="unprefixed"> |
56 <input class="unprefixed-prefixed" value="prefixed"> | 56 <input class="unprefixed-prefixed" value="prefixed"> |
57 </div> | 57 </div> |
OLD | NEW |