-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (99 loc) · 1.71 KB
/
style.css
File metadata and controls
99 lines (99 loc) · 1.71 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
*{
margin:0;
padding: 0;
box-sizing: border-box;
}
body{
margin:0;
padding: 0;
height: 100vh;
background: #f2f4f7;
align-items: center;
justify-content: center;
display: flex;
font-family: "montserrat", sans-serif;
}
input, textarea, button{
font-family: inherit;
}
.container{
height: 530px;
width:420px;
background: #f3f4f7;
border-radius: 10px;
padding: 25px;
box-shadow: 0 0 25px 5px rgba(83, 87, 95, 0.25);
}
h1{
padding: 20px 0;
font-size: 30px;
font-weight: 700;
text-align: center;
text-transform: uppercase;
}
span.bounce-effect{
animation: bounceIn 0.8s linear;
}
.text-field{
width: 100%;
height: 230px;
padding: 10px;
margin: 20px 0;
font-size: 16px;
font-weight: 400;
background: transparent;
outline:none;
resize: none;
}
.copy-btn{
padding: 10px 15px;
color: #f3f4f7;
background-color: blue;
border-radius: 6px;
text-transform: uppercase;
font-size: 16px;
font-weight: 600;
border: none;
outline: none;
cursor: pointer;
}
.copy-btn i{
padding-left: 10px;
}
.copy-btn:active{
transform: scale(0.98);
}
span.copied{
display: block;
margin-top: 50px;
font-size: 26px;
color: #858585;
transition: all 0.5s;
transform: scale(0);
text-align: center;
}
/*
bounce in effect */
@keyframes bounceIn{
0%{
opacity: 0;
transform: scale(0.3);
}
20%{
transform: scale(1.1);
}
40%{
transform: scale(0.9);
}
60%{
opacity: 1;
transform: scale(1.03);
}
8%{
transform: scale(0.97);
}
100%{
opacity: 1;
transform: scale(1);
}
}