-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
94 lines (79 loc) · 1.51 KB
/
main.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
body {
margin: 40px;
width:650px;
height:650px;
background-color: grey;
}
item-display {
display: -webkit-flex;
display: flex;
flex-direction: row;
width: 300px;
height: 250px;
color: black;
}
#display {
height:100px;
width: 235px;
margin-bottom: 15px;
font-family: 'Press Start 2P',monospace;
font-size: 50px;
text-align: right;
background-image: url("gokukingSM.png");
background-repeat: no-repeat;
background-color: #4d4444;
color: white;
}
.calc {
display: -webkit-flex;
display: flex;
flex-direction: column;
align-content: center;
background-color: #e8612a;
width: 240px;
height: 340px;
}
.calculator {
background-color: grey;
color: white;
}
.buttons {
display: -webkit-flex;
display: flex;
flex-direction: column;
}
.calRow {
display: -webkit-flex;
display: flex;
flex-direction: row;
justify-content: space-around;
margin-bottom: 15px;
}
.box {
background-color: #3c42b4;
color: orange;
border-radius: 5px;
font-size: 38px;
font-family: 'Press Start 2P', monospace;
text-align: center;
}
.operator {
background-color: orange;
color: #3c42b4;
border-radius: 5px;
font-size: 38px;
font-family: 'Press Start 2P', monospace;
text-align: center;
}
.box:hover {background-color: #291A7A}
.box:active {background-color: #3C57B4}
.operator:hover {background-color: #E8872A}
.operator:active {background-color: #E8C22A}
button {border: none}
button:active {
outline: none;
border: none;
}
button:focus {
outline: none;
}