commit | author | age
|
5978c3
|
1 |
* { |
CM |
2 |
box-sizing: border-box; |
|
3 |
} |
|
4 |
|
|
5 |
html { |
|
6 |
font-family: 'Jost', sans-serif; |
|
7 |
} |
|
8 |
|
|
9 |
body { |
|
10 |
margin: 0; |
|
11 |
} |
|
12 |
|
|
13 |
header { |
|
14 |
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26); |
|
15 |
margin: 3rem auto; |
|
16 |
border-radius: 10px; |
|
17 |
padding: 1rem; |
|
18 |
background-color: #4fc08d; |
|
19 |
color: white; |
|
20 |
text-align: center; |
|
21 |
width: 90%; |
|
22 |
max-width: 40rem; |
|
23 |
} |
|
24 |
|
|
25 |
#app { |
|
26 |
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26); |
|
27 |
margin: 3rem auto; |
|
28 |
border-radius: 10px; |
|
29 |
padding: 1rem; |
|
30 |
text-align: center; |
|
31 |
width: 90%; |
|
32 |
max-width: 40rem; |
|
33 |
} |
|
34 |
|
|
35 |
#app h2 { |
|
36 |
font-size: 2rem; |
|
37 |
border-bottom: 4px solid #ccc; |
|
38 |
color: #4fc08d; |
|
39 |
margin: 0 0 1rem 0; |
|
40 |
} |
|
41 |
|
|
42 |
#app p { |
|
43 |
font-size: 1.25rem; |
|
44 |
font-weight: bold; |
|
45 |
border: 1px solid #4fc08d; |
|
46 |
background-color: #4fc08d; |
|
47 |
color: white; |
|
48 |
padding: 0.5rem; |
|
49 |
border-radius: 25px; |
|
50 |
} |
|
51 |
|
|
52 |
#app input { |
|
53 |
font: inherit; |
|
54 |
border: 1px solid #ccc; |
|
55 |
} |
|
56 |
|
|
57 |
#app input:focus { |
|
58 |
outline: none; |
|
59 |
border-color: #1b995e; |
|
60 |
background-color: #d7fdeb; |
|
61 |
} |
|
62 |
|
|
63 |
#app button { |
|
64 |
font: inherit; |
|
65 |
cursor: pointer; |
|
66 |
border: 1px solid #ff0077; |
|
67 |
background-color: #ff0077; |
|
68 |
color: white; |
|
69 |
padding: 0.05rem 1rem; |
|
70 |
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.26); |
|
71 |
} |
|
72 |
|
|
73 |
#app button:hover, |
|
74 |
#app button:active { |
|
75 |
background-color: #ec3169; |
|
76 |
border-color: #ec3169; |
|
77 |
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.26); |
|
78 |
} |