Pablo Solar VilariƱo
2020-06-19 49a69db8fa634d24fc03f35cb8589e87c260fa1f
commit | author | age
2bcf3e 1 .centered {
MC 2     text-align: center;
3 }
4
5 .margin-separator {
6     margin-top: 20px;
7 }
8
9 .text-container {
10     text-align: center;
11     font-size: 3em;
12     max-width: 300px;
13     border-bottom-style: solid;
14     border-color: #2b9af3;
15     word-wrap: break-word;
16 }
17
18 .currency-text {
19     font-size: 0.6em;
20     vertical-align: top;
21 }
22
23 @keyframes popupFadeIn {
24     from {
25         transform: translateY(-50%);
26         opacity: 0;
27     }
28     to {
29         transform: translateY(0);
30         opacity: 1;
31     }
32 }
33
34 .popup {
35     animation-name: popupFadeIn;
36     animation-duration: .3s;
37 }