-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (77 loc) · 1.41 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
body {
text-align: center;
margin-top: 50px;
animation: gradientAnimation 10s linear infinite;
font-family: "Roboto", sans-serif;
}
h1 {
margin-bottom: 20px;
}
@keyframes gradientAnimation {
0% { background: linear-gradient(to right, #ff8888, #88ff88); }
25% { background: linear-gradient(to right, #88ff88, #8888ff); }
50% { background: linear-gradient(to right, #8888ff, #ffff88); }
75% { background: linear-gradient(to right, #ffff88, #ff88ff); }
100% { background: linear-gradient(to right, #ff88ff, #88ffff); }
}
.signup-box {
width: 360px;
height: 620px;
margin: auto;
background-color: white;
border-radius: 3px;
}
.login-box {
width: 360px;
height: 280px;
margin: auto;
border-radius: 3px;
background-color: white;
}
h1 {
text-align: center;
padding-top: 15px;
}
h4 {
text-align: center;
}
form {
width: 300px;
margin-left: 20px;
}
form label {
display: flex;
margin-top: 20px;
font-size: 18px;
}
form input {
width: 100%;
padding: 7px;
border: none;
border: 1px solid gray;
border-radius: 6px;
outline: none;
}
input[type="button"] {
width: 320px;
height: 35px;
margin-top: 20px;
border: none;
background-color: #49c1a2;
color: white;
font-size: 18px;
}
p {
text-align: center;
padding-top: 20px;
font-size: 15px;
}
.para-2 {
text-align: center;
color: white;
font-size: 15px;
margin-top: -10px;
}
.para-2 a {
color: #49c1a2;
}