-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (54 loc) · 927 Bytes
/
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
*{
margin: 0;
padding: 0;
font-size: 18px;
box-sizing: border-box;
}
body{
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
}
.container{
display: block;
width: 320px;
background-color: antiquewhite;
border: 1px solid #333;
}
.answer{
border: none;
width: 100%;
height: 5rem;
background-color: #333;
color: #d7ff5f;
font-size: 60px;
padding: 0 10px;
box-sizing: border-box;
}
.clear, .equal{
width: 160px;
background-color: #585858;
cursor: pointer;
}
.clear:hover, .equal:hover{
background-color: blueviolet;
}
.clear:active, .equal:active{
background-color: darkmagenta;
}
.buttons{
width: 80px;
cursor: pointer;
}
.buttons:hover{
background-color: #ddd;
}
.buttons:active{
background-color: #bbb;
}
input{
margin-right: -5px;
height: 50px;
border: 1px solid #333;
}