Uh oh!
There was an error while loading. Please reload this page.
This repository was archived by the owner on May 13, 2020. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyling.css
More file actions
Latest commit
116 lines (104 loc) · 2 KB
/
Copy pathStyling.css
File metadata and controls
116 lines (104 loc) · 2 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
html,body{
background:white;
height:100%;
padding:0;
margin:0;
}
.image-content{
background:yellow;
float:left;
width:50%;
height:100%;
position:relative;
}
.text-content{
background:green;
float:left;
width:50%;
height:100%;
position:relative;
}
iframe {
height: auto;
width:100%;
overflow: hidden;
}
.iframe-container {
overflow: hidden;
padding-top:75%;
position: relative;
}
.iframe-containeriframe {
border:0;
height:100%;
left:0;
position: absolute;
top:0;
width:100%;
}
/* Start of button styling */
.form-switch {
position: relative;
display: inline-block;
cursor: pointer;
-webkit-tap-highlight-color: transparent;
font-size:20px;
/*margin-bottom: 20px;*/
margin:20px;
}
.form-switchi {
position: relative;
display: inline-block;
margin-right:.5rem;
margin-left:50px;
width:46px;
height:26px;
background-color:#e6e6e6;
border-radius:23px;
vertical-align: text-bottom;
transition: all 0.3s linear;
}
.form-switchi::before {
content:"";
position: absolute;
left:0;
width:42px;
height:22px;
background-color:#fff;
border-radius:11px;
transform:translate3d(2px,2px,0) scale3d(1,1,1);
transition: all 0.25s linear;
}
.form-switchi::after {
content:"";
position: absolute;
left:0;
width:22px;
height:22px;
background-color:#fff;
border-radius:11px;
box-shadow:02px2pxrgba(0,0,0,0.24);
transform:translate3d(2px,2px,0);
transition: all 0.2s ease-in-out;
}
.form-switch:activei::after {
width:28px;
transform:translate3d(2px,2px,0);
}
.form-switch:activeinput:checked+i::after {
transform:translate3d(16px,2px,0);
}
.form-switchinput {
position: absolute;
opacity:0;
pointer-events: none;
}
.form-switchinput:checked+i {
background-color:#4BD763;
}
.form-switchinput:checked+i::before {
transform:translate3d(18px,2px,0) scale3d(0,0,0);
}
.form-switchinput:checked+i::after {
transform:translate3d(22px,2px,0);
}