-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.css
65 lines (53 loc) · 1.21 KB
/
auth.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.parent{
display: flex;
height: 100vh;
width: 100vw;
justify-content: center;
align-items: center;
background-color: rgb(222, 227, 230);
}
.card{
display: grid;
padding: 50px;
height: 350px;
width: 250px;
border-radius: 10px;
border: 0;
margin-bottom: 20px;
background-color: rgb(222, 227, 230);
box-shadow:inset -5px -5px 10px rgb(251, 249, 249),inset 5px 5px 8px rgb(115, 112, 112) ;
}
.card>*{
margin: 1px;
border-radius: 5px;
}
.neumorphism-1,.neumorphism-2{
border: 0;
height: 100px;
margin-bottom: 0;
background-color: rgb(222, 227, 230);
box-shadow: -5px -5px 10px rgb(251, 249, 249), 5px 5px 8px rgb(115, 112, 112) ;
}
.neumorphism-1{
font-weight:bolder;
color: rgb(7, 88, 146);
transition: 0.1s;
}
.neumorphism-1:hover{
scale: 1.035;
}
.neumorphism-2{
font-weight:bolder;
color: rgb(244, 48, 22);
transition: 0.1s;
}
.neumorphism-2:hover{
scale: 1.035;
}