-
Notifications
You must be signed in to change notification settings - Fork 0
/
tag.css
104 lines (88 loc) · 1.51 KB
/
tag.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
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
#loggedInSymbol {
background-color:grey;
height: 120px;
width: 120px;
padding: 0px;
}
#loggedInSymbol h1 {
font-size: 40px;
padding-top: 40px;
padding-left: 130px;
}
#login {
border-bottom: 1px black solid;
padding-top: 10px;
padding-bottom: 30px;
}
#tag-toast {
border-bottom: 1px black solid;
}
#tag-actions {
border-bottom: 1px black solid;
padding-bottom: 20px;
}
#tag-value {
margin: 5px;
padding: 2px 7px;
font-size: 80%;
font-weight: bold;
background: #999;
color: #fff;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
opacity: 1;
transition: opacity 0.3s linear;
-moz-transition: opacity 0.3s linear;
-webkit-transition: opacity 0.3s linear;
-o-transition: opacity 0.3s linear;
}
#login button {
background-image: none;
}
#players {
border-right: 1px black solid;
}
.active-player-visual {
height: 120px;
width: 120px;
margin: 20px;
margin-right: 0px;
}
.tagslist {
margin-top: 50px;
margin-bottom: 50px;
margin-left: 30px;
}
.tagslist .addTag {
color: black;
font-size: 16px;
background-color: white;
opacity: .6;
/*top: 42px;
left: 27px;*/
top: -49px;
left: -30px;
background-image: none;
border: none;
text-shadow: none;
box-shadow: none;
}
.tagslist .tagOptions {
/*top: 67px;
left: 26px;*/
top: -24px;
left: -31px;
}
a,
a:hover,
a:focus {
cursor: pointer;
}
@media (max-width: 768px) {
#players {
border-right: 0px black solid;
border-bottom: 1px black solid;
}
}