-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsoundboard.css
More file actions
96 lines (82 loc) · 1.35 KB
/
Copy pathsoundboard.css
File metadata and controls
96 lines (82 loc) · 1.35 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
95
96
body {
margin-top: 3%;
text-align: center;
background-image: url("Pictures/nwtsbackground.png");
background-attachment: fixed;
}
h1 {
font-family: 'Rock Salt', cursive;
font-size: 40px;
color: white;
margin-top: 5%;
}
.overlay {
position:absolute;
display:none;
background-color: rgba(0, 0, 0, 0.7);
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 3;
}
.popup {
position: absolute;
width: 600px;
height: 400px;
display: none;
background-color: rgba(255,255,255,0.8);
text-align: center;
border-radius: 10px 10px 10px 10px;
padding: 25px;
font-family: palatino;
font-size: 18px;
top: 40%;
left: 50%;
margin-left: -320px;
margin-top: -125px;
z-index: 4;
}
.buffer-top {
padding-top: 30px;
padding-bottom: 180px;
}
.buffer-middle {
padding-bottom: 180px;
}
.imgopacity {
height: 120px;
}
.imgopacity:hover {
opacity:0.7;
filter:alpha(opacity=70);
cursor: pointer;
}
.twitter-share-button {
position: fixed;
left: 10px;
bottom: 10px;
}
.fb {
position: fixed;
left: 105px;
bottom: 10px;
}
.hint {
font-family: 'Rock Salt', cursive;
font-size: 20px;
text-decoration: none;
color: white;
position: fixed;
right: 25px;
bottom: 10px;
cursor: pointer;
}
@media only screen and (max-width: 991px) {
.overlay {
cursor: pointer;
}
.popup {
cursor: pointer;
}
}