-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
96 lines (87 loc) · 1.6 KB
/
styles.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
body {
margin:0;
padding:0;
font-family:Arial, Helvetica, sans-serif;
text-align:center;
min-height:100vh;
user-select: none;
background-color: black;
color: #fff;
}
.title {
background-color: rgb(202,52,102);
font-family:'Segoe Ui', Tahoma, Geneva,
Verdana, sans-serif;
border-radius:10px;
margin-top:10px;
border:none;
outline:none;
padding:10px;
box-shadow:2px 5px 2px black;
}
#info {
background-color: #213852;
border-radius: 5px;
margin: 20px 100px;
padding: 6px 0px;
}
.wrapper {
width:500px;
position:absolute;
top:50%;
left:50%;
transform: translate(-50%,-50%);
background-color: rgb(33, 196, 218);
opacity:0.8;
border-radius:1rem;
padding: 50px 20px;
}
h2 {
font-size:30px;
font-weight:600;
}
.input{
text-align: left;
margin-left:120px;
color:#fff;
font-weight:bolder;
}
#step {
color: #222f3e;
text-align:left;
font-size: 20px;
font-weight:200;
outline:none;
background:none;
border-bottom: 1px solid #d1d6d8;
border-right: 1px solid #d1d6d8;
width:200px;
}
#btn{
margin-top:10px;
border:none;
outline:none;
cursor:pointer;
color: #fff;
background-color: #213852;
width:150px;
padding:10px;
border-radius: 10px;
box-shadow: 2px 5px 2px black;
}
#btn:active {
background: rgb(226,238,238);
color:#111;
box-shadow: 0 5px black;
transform:transformY(4px);
}
.loader {
display:none;
}
#myVideo {
position:fixed;
right:0;
bottom:0;
min-height:100%;
min-width:100%;
}