-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHaloHighlightsStyles.css
More file actions
152 lines (123 loc) · 2.24 KB
/
HaloHighlightsStyles.css
File metadata and controls
152 lines (123 loc) · 2.24 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/* THIS IS A DESCRIPTION OF WHERE EVERYTHING IS */
/* All of the game content is in the div with an id of search-container
All of the Twitch stuff is in the div with an id of link-container
All of the loading text is in the div with an id of loadingText
Each game in the search-container div is inside a div with a class of content
Each game can have an <h2> with the name, an img with the image, and the description which is inside <p> tags.
The description of each game can have an <h2> in it, a <p> tag, and another img tag.
The button that loads more things is in a <a> tag with an id of loadMoreButton
Some of the ids and classes already have css here so look for it first before making a new one*/
*{
font-family: 'Play', sans-serif;
}
#logo{
position: absolute;
top: 10px;
left: 27%;
}
#selectors
{
position: absolute;
left: 15%;
top: 50px;
}
#selectors ul li
{
list-style-type: none;
position: relative;
display: inline;
padding-left: 10em;
}
#buttons{
position: absolute;
top: 130px;
left: 43%;
background-image: url("media/mooning.png");
background-repeat: repeat;
}
body
{
width: 100%;
padding-left: 1em;
padding-right: 1em;
background-image: url("media/tweed.png");
background-repeat: repeat;
}
#loadedContent{
background-image: url("media/mooning.png");
background-repeat: repeat;
box-shadow: 30px 30px, 15px, #888888;
border: 5px;
width: 80%;
position: absolute;
left: 10%;
top: 200px;
}
h1
{
text-align: center;
}
.twitchWindow{
position: relative;
left: 23%;
}
.contentFiller
{
position: relative;
width: 70%;
left: 15%;
}
.description
{
position: relative;
top: -20px;
left: 40%;
width: 50%;
}
.learnLink{
}
.loadedImage{
position: relative;
float: left;
left: 8%;
margin: 20px;
}
.gameTitle{
position: relative;
left: 5%;
}
.contentImage
{
position: relative;
left: 25%;
}
.divider{
background-image: url("media/binding_dark.png");
background-repeat: repeat-x;
clear: both;
opacity: 0.4;
margin: 20px;
height: 5px;
}
#search-container
{
display: none;
}
#link-container
{
display: none;
}
#loadMoreButton
{
display: none;
position: absolute
margin-top: 100px;
margin-left: 70%;
}
#loadBackButton
{
display: none;
position: absolute
margin-top: 100px;
margin-left: 30%;
}