-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboxes.css
More file actions
95 lines (93 loc) · 1.88 KB
/
boxes.css
File metadata and controls
95 lines (93 loc) · 1.88 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
.bs-boxes {
position:relative;
padding: 15px 15px;
margin:0 -15px 15px;
border-color:#e5e5e5 #eee #eee;
border-style:solid;
border-width:1px 0;
-webkit-box-shadow:inset 0 3px 6px rgba(0,0,0,.05);
box-shadow:inset 0 3px 6px rgba(0,0,0,.05)
}
.bs-boxes:after {
position:absolute;
top:15px;
left:15px;
font-size:12px;
font-weight:700;
color:#959595;
text-transform:uppercase;
letter-spacing:1px;
}
@media (min-width:768px) {
.bs-boxes {
padding: 15px 15px 0;
margin-right:0;
margin-left:0;
background-color:#fff;
border-color:#ddd;
border-width:1px;
border-radius:4px 4px 0 0;
-webkit-box-shadow:none;
box-shadow:none
}
}
.zero-right-bottom,.zero-right-top {
position:relative;
}
.btn-right-top {
top:0;
right:0;
border-radius:0 4px 0 4px;
}
.btn-right-bottom {
bottom: -16px;
right: -16px;
border-radius: 4px 0 4px 0;
}
.btn-right-bottom, .btn-right-top, .btn-fill-top, .btn-fill-bottom {
position:absolute;
z-index:10;
display:block;
padding:5px 8px;
font-size:12px;
cursor:pointer;
/*
color:#767676;
background-color:#fff;
border:1px solid #e1e1e8;
*/
}
.btn-right-top-first {
top: -16px;
right: -16px;
}
.btn-right-top-second {
top: 16px;
right: -16px;
border-radius: 4px 0 0 4px;
}
.btn-right-bottom-first {
right: -16px;
border-radius: 4px 0 0;
}
.btn-right-bottom-second {
right: 32px;
border-radius: 4px 4px 0 0;
}
.btn-right-top-hover {
color:#fff;
background-color:#563d7c;
border-color:#563d7c
}
@media (min-width:768px) {
.zero-right-bottom, .zero-right-top {
display:block
}
.btn-right-bottom {
bottom: 0;
}
.bs-boxes+.zero-right-top .btn-right-top {
top:-16px;
border-top-right-radius:0
}
}