-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (107 loc) · 2.05 KB
/
style.css
File metadata and controls
123 lines (107 loc) · 2.05 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
114
115
116
117
118
119
120
121
122
123
body {
text-align: center;
background-color: black;
color: white;
overflow: hidden;
}
.sideBar {
width: 150px;
height: 100vh;
display: inline-block;
outline: 1px solid black;
position: absolute;
left: 0;
top: 0;
padding-top: 20px;
background-color: white;
color: black
}
button {
background-color:143a54;
border: 1px solid 0e2433;
text-align: center;
color: yellow;
margin-top: 20px;
}
.board {
width: 75%;
height: 400px;
background-image: url('http://cdn.wonderfulengineering.com/wp-content/uploads/2014/09/star-wars-wallpaper-2.jpg');
background-size: 100% 100%;
margin: 0 auto;
}
.round {
height: 100px;
width: 100px;
border-radius: 50px;
border: 1px solid black;
line-height: 100px;
background-color: gray;
opacity: 0.5;
font-size: 45px;
}
.zone {
margin: 0 40px;
margin-top: 115px;
display: inline-block;
}
.zones {
height: 80%;
}
.fail {
height: 50px;
width: 50px;
border-radius: 50px;
border: 1px solid black;
line-height: 50px;
background-color: gray;
opacity: 0.5;
font-size: 30px;
margin: 30px auto;
}
.highlight {
border: 2px solid red;
}
.spy {
background-image: url('https://upload.wikimedia.org/wikipedia/en/thumb/b/b2/Galactic_Empire_emblem.svg/1024px-Galactic_Empire_emblem.svg.png');
background-size: 100% 100%;
opacity: 1;
}
.resistance {
background-image: url('http://images.wikia.com/starwars/images/7/71/Redstarbird.svg');
background-size: 100% 100%;
opacity: 1;
}
.buttons {
height: 20%;
}
.inline-block {
display: inline-block;
margin: 20px;
}
.pass {
opacity: 1;
background-color: black;
}
.playerCard {
height: 400px;
width: 300px;
background-image: url('http://wallpapersrang.com/wp-content/uploads/2015/11/wallpapers-for-black-gradient-texture-background.jpg');
background-size: 100% 100%;
position: absolute;
bottom: 10px;
right: 10px;
border: 3px solid gray;
border-radius: 10px;
}
.playerCard > img {
height: 400px;
width: auto;
}
.logo {
position: absolute;
left: 0px;
top: 0px;
height: 50px;
width: 50px;
}