Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ryan778
GitHub Repository: Ryan778/Ryan778.github.io
Path: blob/master/find-psd-schedule/style.css
574 views
1
/* show-psd-schedule/style.css
2
(C) 2018 Ryan Zhang. All Rights Reserved.
3
*/
4
5
html{
6
-webkit-user-select: none;
7
-moz-user-select: none;
8
user-select: none;
9
}
10
11
h1{
12
font-size: 20px;
13
background: #cdf;
14
margin: 0;
15
padding: 10px 5px;
16
}
17
h2{
18
font-size: 18px;
19
margin: 5px 0 10px;
20
}
21
22
body{
23
background: #def;
24
}
25
26
27
iframe {
28
border: 0;
29
width: 100%;
30
height: 360px;
31
}
32
33
@media only screen and (min-width: 601px){
34
iframe {
35
margin: 0 7.5%;
36
width: 85%;
37
height: 480px;
38
}
39
}
40
41
@media only screen and (min-width: 993px){
42
iframe {
43
margin: 0 15%;
44
width: 70%;
45
height: 600px;
46
}
47
}
48
49
.ifr-fs{
50
position: fixed;
51
margin: 0;
52
top: -12.5%;
53
left: -12.5%;
54
width: 125%;
55
height: 125%;
56
transform: scale(0.8);
57
z-index: 2;
58
}
59
60
#safari-is-bad{
61
margin-top: 10px;
62
background: #ffd994;
63
padding: 5px 4px;
64
}
65
66
#ifrfs-ft{
67
position: fixed;
68
z-index: 3;
69
bottom: 0px;
70
width: 100%;
71
background: rgba(255, 255, 255, 0.6);
72
display: flex;
73
}
74
75
#ifrfs-ft button{
76
width: 50%;
77
}
78
79
.btn{
80
text-transform: none;
81
}
82
83
footer{
84
text-align: center;
85
font-size: 12px;
86
color: #888;
87
padding: 0 0 5px;
88
}
89
90
hr{
91
border: 1px solid #aaa;
92
border-bottom: none;
93
}
94
95