Marthee commited on
Commit
80caa3e
·
verified ·
1 Parent(s): 7dbf557

Update static/popups.css

Browse files
Files changed (1) hide show
  1. static/popups.css +46 -2
static/popups.css CHANGED
@@ -1,4 +1,4 @@
1
- .mpopup {
2
  display: none;
3
  position: fixed;
4
  z-index: 1;
@@ -11,7 +11,7 @@
11
  background-color: rgb(0,0,0);
12
  background-color: rgba(0,0,0,0.4);
13
  }
14
- .modal-content {
15
  position: relative;
16
  background-color: #fff;
17
  margin: auto;
@@ -71,3 +71,47 @@
71
  from {top:-300px; opacity:0}
72
  to {top:0; opacity:1}
73
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .mpopup ,.overlay{
2
  display: none;
3
  position: fixed;
4
  z-index: 1;
 
11
  background-color: rgb(0,0,0);
12
  background-color: rgba(0,0,0,0.4);
13
  }
14
+ .modal-content ,.popup{
15
  position: relative;
16
  background-color: #fff;
17
  margin: auto;
 
71
  from {top:-300px; opacity:0}
72
  to {top:0; opacity:1}
73
  }
74
+
75
+ .closeModal {
76
+ /* color: #aaa; */
77
+ float: right;
78
+ font-size: 28px;
79
+ font-weight: bold;
80
+ background: none;
81
+ border: none;
82
+ }
83
+
84
+ .closeModal:hover,
85
+ .closeModal:focus {
86
+ color:rgb(134, 28, 28);
87
+ text-decoration: none;
88
+ cursor: pointer;
89
+ }
90
+
91
+ .text-right{
92
+ text-align: center;
93
+ }
94
+ .dialog-btn#confirm{
95
+ background-color:#098815;
96
+ }
97
+ .dialog-btn#cancel{
98
+ background-color:#880909;
99
+ }
100
+ .dialog-btn {
101
+ color: white;
102
+ font-weight: 600;
103
+ border: none;
104
+ border-radius: 5px;
105
+ height: 30px;
106
+ width: 30%;
107
+ }
108
+
109
+ .dialog-btn#confirm:hover{
110
+ background-color:#05470c;
111
+ cursor: pointer;
112
+ }
113
+
114
+ .dialog-btn#cancel:hover{
115
+ background-color:#430505;
116
+ cursor: pointer;
117
+ }