-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
108 lines (103 loc) · 2.01 KB
/
style.css
File metadata and controls
108 lines (103 loc) · 2.01 KB
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
98
99
100
101
102
103
104
105
106
107
108
body{
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
.button{
background-color: white;
color: black;
border: 2px solid #4CAF50;
display: inline-block;
padding: 5px 24px;
text-decoration: none;
transition-duration: 0.4s;
}
.button:hover{
background-color: #4CAF50;
color: white;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.button span{
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.button span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
.button:hover span {
padding-right: 25px;
}
.button:hover span:after {
opacity: 1;
right: 0;
}
/* Modal*/
.modal-container{
width: 100vw;
height: 100vh;
background: rgba(0,0,0,.5);
position: fixed;
top: 0px;
left: 0px;
z-index: 2000;
display: none;
justify-content: center;
align-items: center;
}
#modal-erro .modal{
border: 3px solid white;
background: rgba(226, 55, 43, 0.822);
font-size: 20px;
box-shadow: 0;
}
#modal-erro .fechar{
background: rgba(226, 55, 43, 0.90)
}
.modal-container.mostrar{
display:flex;
}
.modal{
background: white;
min-width: 300px;
padding: 40px;
border: 10px solid rgba(91, 20, 206, 0.48); /*#988b7a*/
box-shadow: 0 0 0 10px white;
position: relative;
}
@keyframes modal {
from{
opacity: 0;
transform: translate3d(0,-60px,0);
}
to{
opacity: 1;
transform: translate3d(0,0,0);
}
}
.mostrar .modal{
animation: modal .3s;
}
.fechar{
position: absolute;
font-size: 1.2em;
top: -30px;
right: -30px;
width: 50px;
height: 50px;
border-radius: 50%;
border: 4px solid white;
background: rgba(91, 20, 206, 0.90);
color: white;
font-family: Arial, Helvetica, sans-serif;
cursor: pointer;
box-shadow: 0 4px 4px 0 rgba(0,0,0,.3);
}
.linhas{
font-size: 25px;
}