-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (92 loc) · 1.58 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body{
display: grid;
place-items: center;
height: 70vh;
}
.box{
width: 500px;
height: 350px;
/* border: 1px solid black; */
box-shadow: 0px 0px 50px lightblue;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 50px;
}
.variables{
display: grid;
grid-template-columns: 1fr 1fr;
justify-items: end;
gap: 20px 130px;
}
.result{
font-size: 20px;
letter-spacing: .4rem;
position: relative;
}
.variables p{
font-size: 20px;
}
#length{
font-size: 15px;
font-weight: bolder;
border: 1px solid;
width: 50px;
height: 30px;
}
input{
width: 60px;
height: 30px;
outline: none;
border-radius: 5px;
}
#include-numbers, #include-special{
accent-color: green;
border-radius: 10px;
}
p{
margin-left: 20px;
}
#submit{
width: 110px;
height: 50px;
background: lightblue;
outline: none;
border: none;
border-radius: 10px;
padding: 3%;
font-size: 20px;
}
#submit:active{
font-size: 18px;
}
#copy-msg{
font-size: 13px;
letter-spacing: normal;
position: absolute;
top: 40px;
left: 50px;
animation: copy 3s ease-in-out infinite ;
display: none;
}
@keyframes copy{
25%{
color: red;
}
50%{
color: green;
}
75%{
color: blue;
}
100%{
color: black;
}
}