-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
84 lines (71 loc) · 1.47 KB
/
style.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
body {
background-image: url("bg.jpg");
background-size: cover;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
form {
text-align: center;
margin: 30px 0px;
button {
display: inline-block;
padding: 10px 15px;
font-size: 20px;
border-radius: 10px;
line-height: 1;
border: 1px solid grey;
&:focus {
outline: none;
}
&:hover {
background-color: #efefef;
cursor: pointer;
}
i.material-icons {
font-size: 15px;
}
}
}
.card-container {
overflow: auto;
max-width: 600px;
margin: 15vh auto 0 auto;
.card-back, .card-front {
width: 50%;
float: left;
padding: 10px;
box-sizing: border-box;
}
.card-back {
img {
border-radius: 20px;
width: 100%;
}
}
.card-front #card-top {
background-color: white;
border-radius: 20px;
height: 392px;
padding: 10px;
box-sizing: border-box;
text-align: center;
opacity: 0.0;
&.red {
color: #e24235;
}
p.value {
font-size: 240px;
line-height: 0;
margin-top: 140px;
margin-bottom: 140px;
}
img {
width: 40px;
}
}
}
.swal-modal.simple-success {
width: 300px;
.swal-title {
margin-bottom: 45px;
}
}
}