-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (83 loc) · 1.45 KB
/
style.css
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
85
86
87
88
89
90
91
92
93
94
95
96
97
body {
background: rgb(228, 193, 169);
color: #fff;
font-family: 'Archivo Black', sans-serif;
font-size: 1em;
}
.container{
text-align: center;
background:cornflowerblue;
border: 2px solid;
border-radius: 25px 25px 0px 0px;
margin: 0px 15px;
}
.hands{
background-color: rgb(233, 74, 74);
display: flex;
border: 2px solid;
border-radius: 0px 0px 25px 25px;
margin: 0px 15px;
}
.card{
margin: 2% auto;
padding: 0px;
text-align: center;
}
.btnR{
background-color: rgb(77, 165, 77);
padding: 5% 25%;
font-size: 1.5em;
}
.btnP{
background-color: rgb(202, 196, 110);
color:black;
padding: 5% 35%;
font-size: 1.5em;
}
.btnS{
background-color: rgb(189, 38, 11);
padding: 5% 25%;
font-size: 1.5em;
}
/* END Popup */
button{
display: block;
margin: 20px auto;
background: crimson;
color: white;
border: 0;
padding: 6px 10px;
}
.popup-wrapper{
background: rgba(223, 166, 166, 0.5);
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: none;
}
.popup{
font-family: Arial, Helvetica, sans-serif;
text-align: center;
color:black;
width: 75%;
max-width: 300px;
margin: 10% auto;
padding: 20px;
background: white;
position: relative;
}
.popup a{
text-decoration: none;
background: crimson;
color: white;
border: 0;
padding: 7px 10px;
}
.popup-close{
position: absolute;
top: 5px;
right: 8px;
cursor: pointer;
}