-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnicer-bootstrap.css
116 lines (98 loc) · 2.53 KB
/
nicer-bootstrap.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
Created on : 2015-09-28, 16:28:19
Author : Rafal Poniatowski <[email protected]>
*/
/*==== Start Of MODAL WINDOW =====================================================*/
.modal {
text-align: center;
}
@media screen and (min-width: 768px) {
.modal:before {
display: inline-block;
vertical-align: middle;
content: " ";
height: 100%;
}
}
.modal-dialog {
display: inline-block;
text-align: left;
vertical-align: middle;
}
.fade {
background-color: rgba(0, 0, 0, 0.6);
}
.modal-content {
background: url('nicer-bootstrap/modal/body_bg.jpg') repeat-x left bottom #e5e5e5;
width: 100%;
border: 1px solid rgba(33, 33, 33, 0.4);
box-shadow: 10px 20px 40px 15px rgba(11, 11, 11, 0.3) !important;
}
.modal-header {
padding: 0;
letter-spacing: 0.3px;
color: #999;
border-bottom: none;
}
.modal-header .modal-title {
font: 24px/1 'Cuprum','Lucida Sans Unicode', 'Lucida Grande', sans-serif;
background: url('nicer-bootstrap/modal/header_bg.jpg') repeat-x left bottom #f5f5f5;
padding: 18px 25px;
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
color: #888;
}
.modal-header .close {
margin: 15px;
font-size: 32px;
}
.modal-body {
padding-left: 30px;
padding-top: 25px;
padding-bottom: 10px;
background: none;
line-height: 1.4;
font-size: 16px;
font: 16px/1 'Cuprum','Lucida Sans Unicode', 'Lucida Grande', sans-serif;
font-weight: normal;
color: #666;
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
}
.modal-footer {
border-top: none;
text-align: center;
}
.modal-footer button {
display: inline-block;
background: url('nicer-bootstrap/modal/buttons.png') no-repeat;
color: white;
position: relative;
height: 33px;
font: 17px/33px 'Cuprum','Lucida Sans Unicode', 'Lucida Grande', sans-serif;
margin-right: 15px;
padding: 0 35px 0 40px;
text-decoration: none;
border: none;
transition: none;
}
.modal-footer button:hover {
color: white;
outline: none;
border-radius: 3px;
background-size: 200% 200%;
transition: none;
}
.modal-footer .blue {
background-position: left top;
text-shadow: 1px 1px 0 #5889a2;
}
.modal-footer .blue:hover {
background-position: left bottom;
}
.modal-footer .gray {
background-position: right top;
text-shadow: 1px 1px 0 #707070;
}
.modal-footer .gray:hover {
background-position: right bottom;
}
/*==== End Of MODAL WINDOW =====================================================*/