ulrich
2016-12-27 95f4150c6074126f2639028a07a629e46300f3d7
commit | author | age
f14cbc 1
72c5c3 2 html, body {
U 3   height: 100%;
4   margin: 0;
5   padding: 0;
6 }
f14cbc 7
3c1a75 8 h1 {
U 9   margin: 0;
10   padding: 0;
11 }
12
13 #inhalt {
72c5c3 14   height: 100%;
U 15 }
16
3c1a75 17 #user-list-form {
U 18   height: 20em;
19 }
20
72c5c3 21 #nutzerliste {
59f8b3 22   height: 100%;
72c5c3 23 }
f14cbc 24
U 25
26 /* Buttons
27 –––––––––––––––––––––––––––––––––––––––––––––––––– */
28 .button,
29 button,
30 input[type="submit"],
31 input[type="reset"],
32 input[type="button"] {
33   display: inline-block;
34   height: 38px;
35   padding: 0 30px;
36   color: #555;
37   text-align: center;
38   font-size: 11px;
39   font-weight: 600;
40   line-height: 38px;
41   letter-spacing: .1rem;
42   text-transform: uppercase;
43   text-decoration: none;
44   white-space: nowrap;
45   background-color: transparent;
46   border-radius: 4px;
47   border: 1px solid #bbb;
48   cursor: pointer;
49   box-sizing: border-box; }
50 .button:hover,
51 button:hover,
52 input[type="submit"]:hover,
53 input[type="reset"]:hover,
54 input[type="button"]:hover,
55 .button:focus,
56 button:focus,
57 input[type="submit"]:focus,
58 input[type="reset"]:focus,
59 input[type="button"]:focus {
60   color: #333;
61   border-color: #888;
62   outline: 0; }
63 .button.button-primary,
64 button.button-primary,
65 input[type="submit"].button-primary,
66 input[type="reset"].button-primary,
67 input[type="button"].button-primary {
68   color: #FFF;
69   background-color: #33C3F0;
70   border-color: #33C3F0; }
71 .button.button-primary:hover,
72 button.button-primary:hover,
73 input[type="submit"].button-primary:hover,
74 input[type="reset"].button-primary:hover,
75 input[type="button"].button-primary:hover,
76 .button.button-primary:focus,
77 button.button-primary:focus,
78 input[type="submit"].button-primary:focus,
79 input[type="reset"].button-primary:focus,
80 input[type="button"].button-primary:focus {
81   color: #FFF;
82   background-color: #1EAEDB;
83   border-color: #1EAEDB; }
84
85 /* Forms
86 –––––––––––––––––––––––––––––––––––––––––––––––––– */
87 input[type="email"],
88 input[type="number"],
89 input[type="search"],
90 input[type="text"],
91 input[type="tel"],
92 input[type="url"],
93 input[type="password"],
94 textarea,
95 select {
96   height: 38px;
97   padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
98   background-color: #fff;
99   border: 1px solid #D1D1D1;
100   border-radius: 4px;
101   box-shadow: none;
102   box-sizing: border-box; }
103 /* Removes awkward default styles on some inputs for iOS */
104 input[type="email"],
105 input[type="number"],
106 input[type="search"],
107 input[type="text"],
108 input[type="tel"],
109 input[type="url"],
110 input[type="password"],
111 textarea {
112   -webkit-appearance: none;
113      -moz-appearance: none;
114           appearance: none; }
115 textarea {
116   min-height: 65px;
117   padding-top: 6px;
118   padding-bottom: 6px; }
119 input[type="email"]:focus,
120 input[type="number"]:focus,
121 input[type="search"]:focus,
122 input[type="text"]:focus,
123 input[type="tel"]:focus,
124 input[type="url"]:focus,
125 input[type="password"]:focus,
126 textarea:focus,
127 select:focus {
128   border: 1px solid #33C3F0;
129   outline: 0; }
130 label,
131 legend {
132   display: block;
133   margin-bottom: .5rem;
134   font-weight: 600; }
135 fieldset {
136   padding: 0;
137   border-width: 0; }
138 input[type="checkbox"],
139 input[type="radio"] {
140   display: inline; }
141 label > .label-body {
142   display: inline-block;
143   margin-left: .5rem;
144   font-weight: normal; }