-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (73 loc) · 1.37 KB
/
style.css
File metadata and controls
84 lines (73 loc) · 1.37 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: #a650df;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
}
.container {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
border: 2px solid black;
border-radius: 5px;
padding: 10px;
max-width: 1000px;
text-align: center;
background-color: white;
}
.container h2 {
margin: 4px;
font-size: 30px;
text-transform: uppercase;
}
.container p {
margin: 10px;
padding: 10px;
text-align: center;
line-height: 18px;
letter-spacing: 0.6px;
}
.otpCode {
display: flex;
align-items: center;
justify-content: center;
margin: 40px 0;
}
.code {
border-radius: 5px;
height: 120px;
width: 100px;
margin: 10px;
border: 1px solid black;
font-size: 75px;
text-align: center;
}
.code::-webkit-outer-spin-button,
.code::-webkit-inner-spin-button {
-webkit-appearance: none;
}
.code:focus {
outline: none;
}
.info {
background-color: lightgray;
max-width: 500px;
border-radius: 5px;
padding: 5px;
}
.code:valid {
border: 2px solid rgb(105, 105, 233);
box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.25);
}
.code:focus {
transform: scale(1.05);
border: 2px solid black;
}