-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
176 lines (151 loc) · 3.24 KB
/
stylesheet.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
body {
background: black;
margin: 0;
}
#myVideo {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
}
.content {
position: fixed;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
color: #f1f1f1;
width: 100%;
padding: 20px;
}
#mybtn {
border: 0 solid;
box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
outline: 1px solid;
outline-color: rgba(255, 255, 255, .5);
outline-offset: 0px;
text-shadow: none;
transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}
#mybtn:hover {
border: 1px solid;
box-shadow: inset 0 0 20px rgba(255, 255, 255, .5), 0 0 20px rgba(255, 255, 255, .2);
outline-color: rgba(255, 255, 255, 0);
outline-offset: 15px;
text-shadow: 1px 1px 2px #427388;
}
.cc_widgets {
display: flex;
flex-direction: column;
height: 100vh;
align-items: center;
justify-content: center;
margin: auto;
}
.generate {
border: 0 solid;
box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
outline: 2px solid;
outline-color: rgba(255, 255, 255, .5);
outline-offset: 0px;
text-shadow: none;
transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
cursor: pointer;
color: #00B2FF;
border: solid #00B2FF 2px;
opacity: 0.9;
background: black;
padding: 15px 20px;
font-size: 12pt;
transition: 2s;
}
.generate:hover {
border: 1px solid;
box-shadow: inset 0 0 20px rgba(255, 255, 255, .5), 0 0 20px rgba(255, 255, 255, .2);
outline-color: rgba(255, 255, 255, 0);
outline-offset: 15px;
text-shadow: 1px 1px 2px #427388;
color: black;
border: solid black 1px;
background: #00B2FF;
transition: 3s;
}
.cc_generator {
width: 200px;
height: 100px;
display: flex;
flex-direction: column;
text-align: center;
}
.valid_number {
color: silver;
font-family: 'Roboto Mono', monospace;
}
.widget {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.ccn {
background: black;
display: inline-block;
color: white;
border: solid #00B2FF 1px;
padding: 20px;
font-size: 14pt;
font: bold;
width: 240px;
padding: 10px;
font-family: 'Roboto Mono', monospace;
}
.authenticate {
text-decoration: none;
border: 1px solid rgb(146, 148, 248);
position: relative;
overflow: hidden;
cursor: pointer;
color: #00B2FF;
background: black;
border: none;
padding: 10px 31px;
font-size: 14pt;
border: solid #00B2FF 1px;
display: inline-block;
}
.authenticate:hover {
box-shadow: 1px 1px 25px 10px rgba(146, 148, 248, 0.4);
background: #00B2FF;
color: black;
transition: 1s;
}
.authenticate:before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(
120deg,
transparent,
rgba(146, 148, 248, 0.4),
transparent
);
transition: all 1650ms;
}
.authenticate:hover:before {
left: 100%;
}
.response {
color: #02F906;
font-family: 'Gabriola', monospace;
font-size: 22pt;
border: solid 4px;
opacity: 0.8;
background: #011013;
text-align: center;
height: 150px;
width: 300px;
padding: 10px;
border: solid #00B2FF 3px;
}