-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
140 lines (117 loc) · 2.15 KB
/
style.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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
.myMainDiv {
max-width: 80%;
margin-left: 9px;
}
body {
background-color: #c63e3e;
overflow: hidden;
}
svg ellipse,
svg path,
svg text {
opacity: 0.0;
}
.show {
opacity: 1;
}
.hide {
opacity: 0.0;
}
.fade {
animation: 3s fade-in-out both;
animation-delay: 1s;
}
@keyframes fade-in-out {
0%,
40%,
90% {
opacity: 0;
visibility: hidden;
}
20%,
60%,
80%,
100% {
opacity: 1;
visibility: visible;
}
}
.btnPlay {
outline: none;
border: none;
padding: 1em 2.5em;
border-radius: 8px;
font-weight: bold;
background-color: #ea2d3f;
color: #fff;
font-size: 1.2em;
cursor: pointer;
box-shadow: 2px 2px 10px 2px rgb(2 2 2 / 30%);
position: absolute;
overflow: hidden;
transition: 0.2s;
top: 50%;
right: 50%;
}
.sample::before {
content: "";
left: -11%;
position: absolute;
top: 45%;
width: 0;
height: 0;
background-color: transparent;
margin-top: -10px;
border-style: solid;
border-width: 20px;
border-color: transparent #009688 transparent transparent;
cursor: pointer;
}
.sample {
position: absolute;
top: 2%;
right: -386px;
transition: right 2s;
}
@import url(https://fonts.googleapis.com/css?family=Roboto:300);
.form {
position: relative;
z-index: 1;
background: #e4293a;
max-width: 360px;
padding: 13px;
text-align: center;
box-shadow: 0 0 20px 0 rgb(0 0 0 / 20%), 0 5px 5px 0 rgb(0 0 0 / 24%);
}
.form input {
font-family: "Roboto", sans-serif;
outline: 0;
background: #f2f2f2;
border: 0;
margin: 0 6px 15px;
padding: 15px;
box-sizing: border-box;
font-size: 14px;
}
.data-input {
width: 100%;
}
.form button {
font-family: "Roboto", sans-serif;
text-transform: uppercase;
outline: 0;
background: #4CAF50;
width: 100%;
border: 0;
padding: 15px;
color: #FFFFFF;
font-size: 14px;
-webkit-transition: all 0.3 ease;
transition: all 0.3 ease;
cursor: pointer;
}
.form button:hover,
.form button:active,
.form button:focus {
background: #43A047;
}