Cristiano Magro
2024-12-27 5a0a7bfaa870ec08c9e93b150af83eef8997cb68
commit | author | age
5a0a7b 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: #58004d;
19   color: white;
20   text-align: center;
21   width: 90%;
22   max-width: 40rem;
23 }
24
25 #app ul {
26   margin: 0;
27   padding: 0;
28   list-style: none;
29 }
30
31 #app li {
32   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
33   margin: 1rem auto;
34   border-radius: 10px;
35   padding: 1rem;
36   text-align: center;
37   width: 90%;
38   max-width: 40rem;
39 }
40
41 #app h2 {
42   font-size: 2rem;
43   border-bottom: 4px solid #ccc;
44   color: #58004d;
45   margin: 0 0 1rem 0;
46 }
47
48 #app button {
49   font: inherit;
50   cursor: pointer;
51   border: 1px solid #ff0077;
52   background-color: #ff0077;
53   color: white;
54   padding: 0.05rem 1rem;
55   box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.26);
56 }
57
58 #app button:hover,
59 #app button:active {
60   background-color: #ec3169;
61   border-color: #ec3169;
62   box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.26);
63 }