-
Notifications
You must be signed in to change notification settings - Fork 0
/
bball.css
73 lines (62 loc) · 1.11 KB
/
bball.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
@import url('https://fonts.googleapis.com/css?family=Bowlby+One+SC&display=swap');
header {
padding: 10px 15px 1px;
background-color: #37d0e8;
box-shadow: 1px -4px 10px #000;
}
header p {
font-size: 13px;
color: #333;
}
h1 {
font-family: 'Bowlby One SC', cursive;
}
#shuffle {
margin:5px 0;
border-radius:5px;
cursor:pointer;
}
.draggable {
cursor: move;
}
.draggable .btn {
visibility: hidden;
}
.draggable:hover .btn {
visibility: visible;
}
.draggable.over {
border: 1px dashed #000;
}
#share {
position: relative;
}
#share span {
display: none;
}
#share.active span {
background-color: #fff;
border: 1px solid #eee;
border-radius: 5px;
box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 1px 0px, rgba(0, 0, 0, 0.1) 0px 4px 8px 0px;
display: block;
font-size: 0.75rem;
left: -100%;
padding: 5px;
position: absolute;
top: 40px;
width: 10rem;
z-index: 5;
}
@media (min-width: 576px) {
.lineup-wrap {
margin-top: 5.6rem;
}
}
@media print {
header,
details,
.lineups h3 {
display: none;
}
}