-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArithmeticBoi.css
72 lines (62 loc) · 1.39 KB
/
ArithmeticBoi.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
.gameWindow {
font-size: 20px;
font-weight: bold;
font-family: monospace, courier;
color: rgb(114, 94, 146);
background: rgb(166, 211, 124);
border-radius: 20px;
width: 450px;
height: 250px;
border: 15px solid #808080;
margin: 30px auto;
text-align: center;
box-shadow: inset -1px 2px 10px 5px #575757;
}
/* zum zentrieren eines divs -> Eingabefeld für Ergebnisse */
.center {
margin: 0px auto;
text-align: center;
}
.inputWindow {
font-size: 100px;
font-weight: bold;
font-family: monospace, courier;
background: white;
height: 120px;
width: 400px;
padding: 20px;
box-shadow: 15px 15px 15px grey;
}
.settingButtons {
background: rgb(100, 100, 100);
color: rgb(218, 218, 218);
height: 30px;
width: 90px;
font-size: 17px;
margin: 15px;
box-shadow: 15px 15px 15px rgb(107, 107, 107);
border: 3px solid rgb(65, 65, 65);
border-radius: 5px;
}
.settingButtons:hover {
cursor: pointer;
}
.settingButtons:active {
box-shadow: 10px 10px 20px grey inset;
}
.toggleButtons {
background: white;
height: 40px;
width: 40px;
font-size: 17px;
margin: 15px;
box-shadow: 15px 15px 15px grey;
border: 3px solid rgb(209, 72, 147);
border-radius: 5px;
}
.toggleButtons:hover {
cursor: pointer;
}
.toggleButtons:active {
box-shadow: 10px 10px 20px grey inset;
}