-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (76 loc) · 1.42 KB
/
Copy pathstyle.css
File metadata and controls
89 lines (76 loc) · 1.42 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
body{
background-color: #D8F8FF;
padding: 50px;
}
.container{
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
height: 500px;
}
.box{
background-image: linear-gradient( to right, #AEE8EF, #E6B1DB);
height: 300px;
width: 80%;
display: flex;
flex-direction: column;
justify-content: space-around;
}
.row1{
display: flex;
justify-content: center;
color: white;
}
.row2{
display: flex;
justify-content: space-around;
}
.row2 button{
border-radius: 50px;
border: 1px transparent solid;
}
.row2 input {
height: 40px;
width: 300px;
}
.box-1{
width: 70%;
background-color: #555555;
height: 150px;
display: flex;
align-items: center;
justify-content: space-around;
}
.output{
height: 100px;
width: 100px;
background-color: black;
overflow: hidden;
}
.numbers{
background-color: white;
height: 100px;
width: 100px;
margin-top: 1px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-top: 3px black solid;
}
.next{
background-color: white;
height: 100px;
width: 100px;
margin-top: 1px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-top: 3px black solid;
}
h1.animate {
transition-duration: 0.5s;
top: 0px;
}