-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (71 loc) · 1.53 KB
/
style.css
File metadata and controls
79 lines (71 loc) · 1.53 KB
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
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-size: 1rem;
font-family: 'Montserrat', sans-serif;
}
body{
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 30%;
height: 50%;
border-radius: 15px;
box-shadow: 28px 28px 74px #d6d6d6, -28px -28px 74px #ffffff;
}
h2{
font-size: 2rem;
}
.container .form{
display: flex;
justify-content: space-evenly;
align-items: center;
flex-direction: column;
width: 80%;
height: 70%;
}
.input{
padding: 12px 24px;
margin: 12px 24px;
width: 90%;
border-radius: 5px;
outline: none;
border: none;
box-shadow: 5px 5px 10px #d6d6d6, -5px -5px 10px #ffffff;
transition: all .6s ease-in-out;
}
.input:focus{
box-shadow: inset 5px 5px 10px #d6d6d6, inset -5px -5px 10px #ffffff;
}
.btn{
padding: 15px 30px;
font-size: 1rem;
border-radius: 5px;
background-color: #8700C3;
color: #FFF;
border: none;
cursor: pointer;
transition: all .6s ease-in-out;
}
.btn:hover{
background-color: rgba(135, 0, 195, .8);
}
#result{
display: none;
padding: 12px 24px;
margin: 12px 24px;
width: 90%;
border-radius: 5px;
text-align: center;
box-shadow: inset 28px 28px 74px #d6d6d6, inset -28px -28px 74px #ffffff;
}