-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (64 loc) · 1.04 KB
/
style.css
File metadata and controls
65 lines (64 loc) · 1.04 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
html, body {
height: 100%;
width: 100%;
}
.button{
padding:20px;
margin:0 3px;
border:2px solid black;
border-radius: 9px;
cursor: pointer;
box-shadow:1px 3px #4be7c8;
}
.button:hover{
color:#e1232d;
}
.row{
margin:5px 0;
}
.input{
width: 291px;
font-size: 20px;
margin: 0;
padding: 10px 0px;
border: 2px solid black;
border-radius: 4px;
}
.output{
/* background: red; */
height: 4.7vh;
}
.container{
display: grid;
justify-content:center;
width:320px;
margin: 15px;
background: red;
border-radius: 10px;
}
.dd{
position: absolute;
left: 40vw;
top: 30vh;
width: 10vw;
height: 10vw;
border-radius:100% ;
visibility: hidden;
background: yellow;
/* transition: 0.5s; */
animation: animate .5s infinite;
}
@keyframes animate
{
0%
{
height: 10vw;
width: 10vw;
}
100%{
left: 0vw;
top: 0vw;
height: 100%;
width: 100%;
}
}