this repo has no description
1.confirmation-blackout{
2 position: fixed;
3 top: 0;
4 left: 0;
5 width: 100vw;
6 height: 100vh;
7 z-index: 150;
8 background: #000A;
9}
10
11.confirmation-popup{
12 position: fixed;
13 top: 50%;
14 left: 50%;
15 transform: translate(-50%, -50%);
16 background: #272e44;
17 border-radius: 20px;
18 padding: 10px 20px;
19 text-align: center;
20}
21
22.confirmation-buttons{
23 display: flex;
24 margin-top: 30px;
25}
26
27.confirmation-button{
28 cursor: pointer;
29 user-select: none;
30 -webkit-user-select: none;
31
32 width: 100%;
33 padding: 2px 10px;
34 border: 1px solid #fff;
35 border-radius: 5px;
36 transition: 0.1s;
37 margin: 0 5px;
38}
39
40.confirmation-button:hover{
41 background: #fff2;
42}