-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (50 loc) · 934 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
58
59
60
61
62
63
* {
margin: 0;
padding: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
background-color: rgb(46 49 44);
}
#container {
border: 1px solid black;
width: 600px;
margin: 40px auto;
background-color: #22242C;
}
h1 {
text-align: center;
}
#screen {
display: block;
margin: 10px auto;
font-size: 2.6rem;
}
table {
margin: 10px auto;
}
td {
border-radius: 10px;
box-shadow: 0px 0px 3px rgb(104, 104, 104);
transition: 100ms;
height: 70px;
width: 80px;
}
table button {
font-size: 2rem;
width: 100%;
height: 100%;
border-radius: 10px;
}
button:focus {
outline: none;
}
td:active {
transform: scale(0.8);
}
#calculator{
}
#mode_sun{
background-color: #22242C !important;
font-size: 20px;
}