-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
71 lines (63 loc) · 1.13 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
71
.green { color: green }
.red { color: red }
.all-ethoses, .all-governments {
height: 430px;
position: relative;
}
.all-ethoses ul, .all-governments ul {
list-style-type: none;
}
.all-ethoses .ethos {
position: absolute;
width: 5em
}
.selected {
color: blue;
font-weight: bold;
}
.government-form {
text-align: center;
cursor: help;
}
.all-governments ul {
padding: 0;
}
.all-governments .government {
height: 90px;
font-size: 13px;
text-align: center;
}
.all-governments .government img {
/*margin-left: 25%;*/
height: 50px;
border: 2px dashed rgba(0, 0, 0, 0);
}
.all-governments .government.selected img {
border-radius: 100%;
border-color: blue;
}
.all-governments .government.unavailable {
color: lightgrey;
}
.all-ethoses .ethos,
.all-governments .government,
.all-traits .trait {
cursor: pointer;
}
.selected-ethoses, .selected-governments, .hovered-government-form {
font-size: 0.95em;
height: 430px;
overflow: scroll;
padding-top: 40px;
}
.selected-traits {
font-size: 0.95em;
padding-top: 40px;
}
.hovered {
font-style: italic;
opacity: 1;
}
.notselected.hovered {
opacity: 0.5;
}