-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (89 loc) · 1.61 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 {
margin: 0;
padding: 0;
font: 100%/1 'Lato', Arial, sans-serif;
color: #333;
background: #fff;
}
.button {
background-color:#f5f5f5;
border:1px solid #dcdcdc;
color:#666;
cursor:pointer;
display:inline-block;
vertical-align:middle;
font-size:13px;
font-weight: bold;
font-family: 'Lato', Arial, sans-serif;
text-transform: uppercase;
height:27px;
line-height:27px;
min-width:54px;
padding:0 8px;
text-align:center;
text-decoration:none;
border-radius:2px;
background:linear-gradient(top,#f5f5f5,#f1f1f1);
}
.trigger, #output {
padding: 1em;
margin: 0;
}
/*= Confirm Box */
#confirm-wrapper {
width: 100%;
height: 100% !important;
position: fixed;
top: 0;
left: 0;
z-index: 1000000;
background: rgba(0, 0, 0, 0.6);
display: none;
transition: opacity 1s ease-in;
}
#confirm-box {
width: 332px;
background: #fff;
min-height: 200px;
position: absolute;
top: 50%;
left: 50%;
padding: 2%;
margin: -100px 0 0 -150px;
}
#confirm-buttons {
position: absolute;
width: 100%;
text-align: center;
bottom: 0;
left: 0;
padding-bottom: 1em;
}
#confirm-buttons button {
display: inline-block;
background: transparent;
color: #000;
font-size: 1em;
font-family: 'Lato', Arial, sans-serif;
font-weight: bold;
cursor: pointer;
text-transform: uppercase;
border: 2px solid;
margin: 0 0.5em;
padding: 0.6em 0;
width: 120px;
}
#confirm-header {
text-align: center;
font-size: 1em;
font-weight: bold;
text-transform: uppercase;
margin: 2.5em 0 1.5em 0;
}
#confirm-header:after {
content: ' ';
display: block;
width: 1em;
border-top: 1px solid;
margin: 0.4em auto;
}