blinker / firefox.plugin / data / tutorial / tutorial.css @ master
History | View | Annotate | Download (1.365 KB)
1 |
body {
|
---|---|
2 |
background: #fff; |
3 |
font-family: Arial; |
4 |
color: #384047; |
5 |
margin: 0; |
6 |
} |
7 |
|
8 |
#content {
|
9 |
margin-top: 50px; |
10 |
margin-bottom: 100px; |
11 |
} |
12 |
|
13 |
.inputcont {
|
14 |
max-width: 500px; |
15 |
margin: 0 auto; |
16 |
background: #f4f7f8; |
17 |
padding: 15px 30px; |
18 |
} |
19 |
|
20 |
ol {
|
21 |
padding-left: 15px; |
22 |
list-style: none; |
23 |
} |
24 |
|
25 |
ol span.number { |
26 |
background: #4bc970; |
27 |
color: white; |
28 |
padding: 6px 9px; |
29 |
border-radius: 100px; |
30 |
font-size: 1rem; |
31 |
} |
32 |
|
33 |
a { margin-top: 15px; margin-bottom: 25px; display: block; } |
34 |
|
35 |
h1 {
|
36 |
text-align: center; |
37 |
margin-bottom: 30px; |
38 |
} |
39 |
|
40 |
input, select, textarea { |
41 |
background: #e8eeef; |
42 |
width: 100%; |
43 |
border: none; |
44 |
padding: 5px; |
45 |
min-height: 40px; |
46 |
margin-bottom: 15px; |
47 |
} |
48 |
|
49 |
audio, video { |
50 |
width: 100%; |
51 |
margin-bottom: 50px; |
52 |
height: auto; |
53 |
} |
54 |
|
55 |
input[type="text"] { |
56 |
height: 100px; |
57 |
padding: 5px; |
58 |
} |
59 |
|
60 |
input[type="radio"] { |
61 |
margin-top: 15px; |
62 |
margin-bottom: 15px; |
63 |
} |
64 |
|
65 |
select {
|
66 |
height: 50px; |
67 |
padding: 5px; |
68 |
margin-top: 30px; |
69 |
} |
70 |
|
71 |
|
72 |
input[type="radio"], input[type="checkbox"] { |
73 |
width: auto; |
74 |
padding: 0; |
75 |
min-height: auto; |
76 |
} |
77 |
|
78 |
button {
|
79 |
background: #4bc970; |
80 |
color: white; |
81 |
width: 100%; |
82 |
border: none; |
83 |
padding: 20px; |
84 |
font-size: 1.3rem; |
85 |
border-radius: 5px; |
86 |
margin-top: 30px; |
87 |
} |
88 |
|
89 |
button:hover { |
90 |
cursor: pointer; |
91 |
background: #369451; |
92 |
} |
93 |
|
94 |
.tutorial ol li { |
95 |
margin-bottom: 80px; |
96 |
} |
97 |
|
98 |
h3 {
|
99 |
text-align: center; |
100 |
} |