-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathverify.css
101 lines (101 loc) · 1.98 KB
/
verify.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
*{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#main{
/* border: 2px solid red; */
margin: auto;
margin-top: 50px;
text-align: center;
max-width: 27rem;
padding: 2px;
}
#signin-header{
text-align: center;
margin: auto;
display: block;
color: #494949;
font-style: normal;
font-weight: bold;
font-size: 14px;
line-height: 24px;
/* font-family: 'National2-Medium'; */
margin-bottom: 7%;
}
#logo{
margin-bottom: 7%;
}
#title{
text-align: center;
font-style: normal;
font-weight: bold;
font-size: 24px;
line-height: 24px;
letter-spacing: 0.01px;
text-transform: uppercase;
color: #202124;
margin-bottom: 7%;
}
#mobno{
display: flex;
align-items: center;
justify-content: center;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 24px;
text-align: center;
letter-spacing: -0.1px;
color: #494949;
}
#samemobno{
font-weight: bold;
}
#code input{
width: 60%;
margin: 0 auto;
border: none;
border-bottom: 2px solid #494949;
outline: none;
text-align: center;
font-style: normal;
font-weight: bold;
font-size: 22px;
line-height: 44px;
text-align: center;
text-transform: uppercase;
color: #202124;
margin-bottom: 7%;
}
#resend input{
color: #494949;
background: none;
border: none;
text-decoration: underline;
cursor: pointer;
outline: none;
font-style: normal;
font-weight: bold;
font-size: 14px;
line-height: 24px;
letter-spacing: -0.1px;
margin-bottom: 7%;
}
#submit button{
background-color: rgb(219, 219, 219);
color: rgb(32, 33, 36);
cursor: pointer;
border-radius: 200px;
border: none;
outline: none;
padding: 10px 40px;
}
@media only screen and (max-width: 1000px) {
/* Medium Screen */
#main{
max-width: 95%;
box-shadow: none;
}
#submit button{
width: 80%;
}
}