-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheugene.css
79 lines (68 loc) · 1.27 KB
/
eugene.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
* {
font-family: 'Roboto', sans-serif;}
body{
background: #ddd;
font-family: "Raleway";
}
.center{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.popup{
width: 800px;
height: 400px;
padding: 30px 20px;
background: #f5f5f5;
border-radius: 10px;
box-sizing: border-box;
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.popup .icon{
margin: 5px 0px;
width: 50px;
height: 50px;
border: 2px solid #34f234;
text-align: center;
display: inline-block;
border-radius: 50%;
line-height: 60px;
}
.popup .icon .fa{
font-size: 30px;
color: #34f234;
}
.popup .title{
margin: 5px 0px;
font-size: 30px;
font-weight: 600;
}
.popup .description{
color: #222;
font-size: 20px;
padding: 5px;
}
.popup .dismiss-btn{
margin-top: 15px;
}
.popup .dismiss-btn button {
padding: 10px 20px;
background: #111;
color: #f5f5f5;
border: 2px solid #111;
font-size: 16px;
font-weight: 600;
outline: none;
border-radius: 10px;
cursor: pointer;
transition: all 300ms ease-in-out;
}
.popup .dismiss-btn button:hover{
color: #111;
background: #f5f5f5;
}