-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
87 lines (80 loc) · 1.58 KB
/
index.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Roboto", serif;
font-weight: 350;
font-style: normal;
/* background-color: rgba(248, 211, 165, 0.616); */
}
h2 {
text-align: center;
}
.container {
width: 32%;
margin: 80px auto;
border: 1px solid rgba(128, 128, 128, 0.616);
padding: 50px 18px;
border-radius: 5px;
background-color: rgba(255, 255, 255, 0.473);
box-shadow: 2px 2px 15px 0.8px rgba(153, 151, 151, 0.295);
}
form {
margin-top: 45px;
display: flex;
flex-direction: column;
gap: 10px;
}
form input[type="text"],
input[type="password"] {
padding: 9px 0px;
border-radius: 3px;
border: 0.4px solid rgba(112, 111, 111, 0.753);
background-color: rgba(255, 255, 255, 0.233);
}
form input[type="submit"] {
padding: 8px 0px;
border-radius: 3px;
border: 0.4px solid rgba(112, 111, 111, 0.753);
background-color: rgba(9, 13, 226, 0.877);
color: white;
cursor: pointer;
margin-top: 8px;
}
.forgotpw {
margin-top: 4px;
}
footer {
margin-top: 26px;
}
.icons {
display: flex;
margin-top: 20px;
padding: 7px;
gap: 25px;
justify-content: center;
}
a {
color: rgba(39, 42, 218, 0.815);
transition: 0.1s ease-in-out;
text-decoration: none;
font-size: 12.5px;
}
.anotherlink {
display: flex;
justify-content: end;
margin-top: 8px;
}
a:hover {
color: rgb(0, 4, 255);
}
form input[type="submit"]:hover {
background-color: rgb(0, 4, 255);
transition: 0.1s ease-in-out;
}
#useremail,
#password {
padding-left: 7px;
}