-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (64 loc) · 1.18 KB
/
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
64
65
66
67
68
69
70
.upperDeck{
width:400px;
height: auto;
background-color: aqua;
}
.midDeck{
width:90%;
height:auto;
margin: auto;
background-color: lightcyan;
border-bottom: 2px solid black;
vertical-align: middle;
}
.midDeck>p{
position: relative;
margin:3px;
padding:3px;
}
.table{
width:auto;
height:auto;
background-color:fuchsia;
margin: 10px;
margin-top:0;
}
.midDeck:last-child{
border-radius: 0px 0 5px 5px;
}
.midDeck:nth-child(2){
border-radius: 5px 5px 0px 0px;
}
.tables{
width:auto;
height:100%;
display:flex;
flex-direction: row;
margin: auto;
justify-content: center;
justify-items: center;
justify-self: center;
}
.currPair{
width:15px;
height:15px;
display: inline-block;
position:relative;
float:right;
top:-6px;
right:15px;
background-color: lawngreen;
border-radius: 50px;
}
@media(max-width:800px){
.tables{
width:auto;
margin: auto;
flex-direction: column;
}
.table{
width:auto;
margin: auto;
margin-bottom:10px;
}
}