-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (67 loc) · 1.19 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;500;600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family:'Poppins', sans-serif;
font-weight: 500;
}
html,body {
height: 100%;
width: 100%;
}
body {
display: flex;
justify-content: center;
align-items: center;
background-color: #e3f2fd;
}
.wrapper {
height: 208px;
transition: height 0.2s ease;
}
.wrapper.active {
height: auto;
}
form {
height: 160px;
cursor: pointer;
transition: height 0.2s ease;
}
.wrapper.active form {
height: 200px;
pointer-events: none;
}
form i {
font-size: 5rem;
color:#0d6efd;
}
form img {
width: 150px;
display: none;
}
.wrapper.active form img {
display: block;
}
.wrapper.active form .content{
display: none;
}
.details {
opacity: 0;
pointer-events: none;
}
.wrapper.active .details {
opacity: 1;
pointer-events: auto;
transition: opacity 0.5s 0.5s ease;
}
.details textarea {
background-color: transparent;
border-color: #fff;
}
.details textarea:focus {
outline: unset;
}
.details .buttons button {
width: calc(100% / 2 - 10px);
}