-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (50 loc) · 893 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
* {
margin: 0; padding: 0;
}
html, body {
width: 100%;
}
.credits {
border: 1px solid black;
width: 260px;
box-shadow: 2px 2px grey;
margin: 5% auto 0 auto;
}
#container {
width: 500px; height: 500px;
border: 1px solid black;
display: table;
border-spacing: 10px;
border-collapse: separate;
background-color: #99ccea;
position: fixed;
margin-left:-250px; margin-top:-250px;
top: 50%; left: 50%;
table-layout: fixed;
}
#trdisplay {
display: table-row;
text-align: right;
}
#tcdisplay {
display: table-cell;
border: 5px solid #8eb1c8;
text-align: center;
background-color: white;
height: 100px;
font-family: helvetica;
}
.trow {
display: table-row;
}
.tcbutton {
display: table-cell;
border: 5px solid #8eb1c8;
text-align: center;
background-color: white;
font-family: helvetica;
font-size: 20px;
}
.tcbutton:active:hover {
background-color: grey;
}