-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (77 loc) · 1.32 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
body {
margin: 0;
background-color: #666666;
}
#container {
margin: auto;
margin-top: 75px;
width: 405px;
height: 805px;
border-radius: 75px;
background-color: black;
border: 1px solid white;
}
#screen {
margin: auto;
width: 398px;
height: 300px;
border-radius: 30px;
}
#value {
width: 88.5%;
height: 475px;
bottom: 0;
right: 0;
margin: 10px;
color: white;
font-size: 75px;
background-color: transparent;
border: none;
text-align: right;
}
::placeholder {
color: white;
}
#form {
margin: auto;
width: 398px;
height: 600px;
border-radius: 30px;
display: flex;
gap: 10px;
align-content: baseline;
justify-content: center;
flex-wrap: wrap;
}
button {
margin-top: 5px;
margin-left: 5px;
height: 80px;
width: 80px;
border-radius: 100px;
background-color: #333333;
border: none;
font-size: 40px;
cursor: pointer;
color: white;
}
.buttonTop {
background-color: #a5a5a5;
color: black;
}
.buttonTop:hover {
background-color: #949494;
}
.buttonRight {
background-color: #ff9f0a;
color: white;
}
.buttonRight:hover {
background-color: #cc7c08;
}
button:hover:not(.buttonTop):not(.buttonRight) {
background-color: #222222;
}
#button_0 {
width: 170px;
}