-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcapital_game.css
executable file
·69 lines (69 loc) · 1.11 KB
/
capital_game.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
body {
background-color: #eee;
font-family: 'Roboto', sans-serif;
font-weight: bold;
}
.Table{
width: 500px;
margin-left:auto;
margin-right: auto;
}
h1{
font-size:240%;
font-weight: bold
}
h2{
font-size:150%;
font-weight: bold;
}
table{
border: none;
border-collapse: collapse;
width:100%;
}
tr{
border-bottom: 1px solid #808080;
margin-top: 0;
margin-bottom: 0;
}
th, td{
position: relative;
z-index: 0;
border: none;
padding: 5px;
}
/*
.autocomplete{
position: relative;
display: inline-block;
}
.autocomplete-items {
position: absolute;
border: 1px solid #d4d4d4;
border-bottom: none;
border-top: none;
z-index: 99;
top: 100%;
left: 0;
right: 0;
max-height: 250px;
}
.autocomplete-items div {
padding: 10px;
cursor: pointer;
background-color: #fff;
border-bottom: 1px solid #d4d4d4;
}
*/
.suggestions{
position: relative;
z-index: 99;
max-height: 250px;
}
.suggestions > div {
cursor: pointer;
}
.container{
overflow: hidden;
}
/*your code here*/