-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcssfile.css
More file actions
67 lines (67 loc) · 1.59 KB
/
Copy pathcssfile.css
File metadata and controls
67 lines (67 loc) · 1.59 KB
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
<style>
body {
font-family: Tahoma;
background-color: aquamarine;
}
.fixed-footer{
width: 100%;
background: cornflowerblue;
padding: 10px;
}
.fixed-footer{
bottom: 0;
position: auto;
text-align: center;
}
#container {
width: 200px;
padding: 8px 8px 20px 8px;
margin: 150px auto;
background-color:darkblue;
border-radius: 10px;
border-bottom: 2px;
border-left: 2px;
}
#screen {
display: block;
margin: 15px auto;
height: 42px;
width: 174px;
padding: 0 10px;
border-radius: 4px;
font-size: 28px;
color: dimgrey;
text-align: right;
}
.digits, .mdigits{
background-color: darkgrey;
}
.edigits{
background-color: dimgrey;
}
.rdigits{
background-color: darkred
}
.digits , .mdigits , .rdigits, .edigits {
display: inline-block;
margin: 2px;
width: 42px;
height: 42px;
font-size: 16px;
font-weight: bold;
border-radius: 4px;
color: black;
border-top: 2px;
border-right: 2px;
border-bottom: 2px;
border-left: 2px;
border-radius: 4px;
}
.digits:hover,.mdigits:hover,.rdigits:hover , .edigits:hover {
background-color:skyblue;
border-top: 2px;
border-right: 2px;
border-bottom: 2px;
border-left: 2px;
}
</style>