-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
116 lines (99 loc) · 1.93 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body{
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: #aa57cc;
}
.wrapper{
background: #fff;
max-width: 500px;
padding: 20px 25px 15px;
border-radius: 7px;
}
header h1{
font-size: 27px;
font-weight: 500;
text-align: center;
}
header p{
margin-top: 5px;
font-size: 18px;
color: #474747;
}
.inputs{
margin: 20px 0 27px;
}
.inputs input{
width: 100%;
height: 60px;
outline: none;
border: 1px solid #999;
border-radius: 5px;
font-size: 19px;
padding: 0 17px;
}
.inputs input:focus{
box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}
.inputs button{
width: 100%;
opacity: 0.7;
height: 56px;
outline: none;
margin-top: 20px;
font-size: 17px;
background: #aa57cc;
color: #fff;
border-radius: 5px;
pointer-events: none;
border: none;
cursor: pointer;
}
.inputs button.active{
opacity: 1;
pointer-events: auto;
}
.info-txt{
display: none;
font-size: 19px;
text-align: center;
margin-bottom: 18px;
}
.info-txt span{
columns: #aa57cc;
}
.love {
font-weight: 600;
text-align: center;
padding: 5px;
color: black;
}
a:link {
color: rgb(240, 97, 121);
background-color: transparent;
text-decoration: none;
}
a:visited {
color: rgb(240, 97, 121);
background-color: transparent;
text-decoration: none;
}
a:hover {
color: blue;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: green;
background-color: transparent;
text-decoration: underline;
}