forked from ichiragkumar/checkpalindrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (75 loc) · 1.54 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
/* importing google fonts here */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital@1&display=swap");
/* /* adding universal class */
*{
margin: 0;
padding: 5px;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body{
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: rgb(255, 185, 255);
}
.wrapper{
max-width: 500px;
padding: 20px 25px 15px;
background: #fff;
border-radius: 10px;
;
}
header h1{
font-size: 21px;
font-weight: 500px;
}
header p{
margin-top: 5px;
font-size: 10px;
color: #474747;
}
.inputs{
margin: 20px 0 27px;
}
.inputs input{
width: 100%;
height: 60px;
outline: none;
font-size: 19px;
padding: 0 17px;
border: 2px solid #999;
}
.inputs input:focus{
box-shadow: 0 3px 6px rgba(17, 219, 125, 0.15);
}
.inputs button{
width: 100%;
height: 56px;
outline: none;
border: none;
opacity: 0.7;
cursor: pointer;
margin-top: 22px;
font-size: 17px;
color: #fff;
border-radius: 8px;
pointer-events: none;
background: rgb(119, 23, 119);
/* pointer-events: none; */
/* opacity: 0.7; */
}
.inputs button.active{
opacity: 1;
pointer-events: auto;
}
.info-text{
font-size: 19px;
text-align: center;
margin-bottom: 18px;
display: none;
}
.info-text span{
color: rgb(36, 18, 192);
}