-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
63 lines (40 loc) · 993 Bytes
/
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
body{
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
form{
/* border: 1px solid; */
width: 200px;
margin: 0;
background-color: aqua;
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
border-radius: 10px;
}
form > button{
border-radius: 10px;
text-decoration: none;
border: none;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
#Login{
border-radius: 10px;
border: none;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
@media (max-width: 600px) {
body {
padding: 10px;
margin: 0;
}
#box {
padding: 15px;
}
input[type="text"], input[type="password"], input[type="submit"] {
padding: 8px;
}
button {
padding: 8px 15px;
}
}