-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
113 lines (95 loc) · 1.77 KB
/
styles.css
File metadata and controls
113 lines (95 loc) · 1.77 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
body {
background-color: rgb(44, 44, 44);
color: white;
}
.nav_container {
display: flex;
flex-direction: row;
align-items: center;
margin-left: auto;
margin-right: auto;
margin-bottom: -10px;
max-width: 440px;
}
.link_container {
display: flex;
flex-direction: row;
margin-right: -1px;
}
.selectionBox {
background-color: rgb(20, 20, 20);
border: solid 2px rgb(0, 0, 0);
color: white;
width: 600px;
height: 25px;
}
.link {
background-color: rgb(20, 20, 20);
border: solid 2px black;
text-decoration: none;
color: white;
width: 100px;
height: 26px;
margin-left: 4px;
}
.objName {
font-size: 35px;
padding-right: 25px;
}
.icon {
height: 35px;
margin-right: .5em;
margin-bottom: -1px;
}
.gold {
color: rgb(219, 218, 218);
margin-top: -3px;
margin-bottom: 10px;
font-size: 13px;
text-align: left;
}
.listWrap {
display: flex;
flex-direction: column;
border: solid 2px rgb(0, 0, 0);
background-color: rgb(20, 20, 20);
margin-left: auto;
margin-right: auto;
text-align: left;
max-width: 500px;
width: 440px;
}
ul {
list-style-position: inside;
list-style-type: none;
}
.rightList {
margin-top: -1em;
}
/* --- Media Query --- */
@media screen and (min-width: 900px) {
.nav_container {
max-width: 850px;
margin-right: auto;
}
.selectionBox {
margin-left: -1px;
margin-right: 10px;
}
.listWrap {
flex-direction: row;
max-width: 850px;
width: 850px;
}
.leftList {
margin-bottom: -32.5px;
width: 435px;
}
.rightList {
margin-top: 0;
margin-right: 3.5em;
}
}
.coinImg {
height: 12px;
}