-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
145 lines (125 loc) · 2.61 KB
/
styles.css
File metadata and controls
145 lines (125 loc) · 2.61 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
/* Root, Menu Image, Speperators, Grid */
/* Root */
:root{
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
cursor: grab;
}
:root:active{
cursor: grabbing;
}
/* Menu Image */
.MenuImg{
top: 50px;
border-radius: 20px;
}
/* Separators */
hr.rounded{
border: 8px solid #333;
border-radius: 500px;
}
/* Title */
/* This is used to style the title of the page, if needed */
#Title{
display:inline-block;
padding-top: 15px;
padding-right: 40px;
padding-bottom: 15px;
padding-left: 40px;
background-color: #444444;
border: 3px solid #555555;
border-radius: 15px;
color: #e4e4e4;
text-align: middle;
text-decoration: solid;
font-size: 50px;
}
/* Grid Layout */
.grid{
grid-template-columns: auto auto auto;
display: grid;
gap: 30px 15px;
}
/* Buttons, Images, Badges */
.Btn {
display:inline-block;
padding-top: 15px;
padding-right: 70px;
padding-bottom: 15px;
padding-left: 70px;
background-color: #333333;
border: 3px solid #444444;
border-radius: 15px;
color: lightgray;
text-align: middle;
text-decoration: solid;
display: block;
font-size: 15px;
cursor: pointer;
}
.Images{
position: relative;
right: 15%;
}
.badges{
position: relative;
}
/* Badge Types */
.badge-Featured {
position:absolute;
bottom: 200px;
right : 20%;
border: 5px solid goldenrod;
background-color: gold;
color: darkgoldenrod;
padding: 4px 8px;
text-align: center;
border-radius: 10px;
}
.badge-Experimental{
position:absolute;
bottom: 150px;
right : 20%;
border: 5px solid teal;
background-color: turquoise;
color: darkcyan;
padding: 4px 8px;
text-align: center;
border-radius: 10px;
}
.badge-New {
position:absolute;
bottom: 100px;
right : 20%;
border: 5px solid darkred;
background-color: red;
color: maroon;
padding: 4px 8px;
text-align: center;
border-radius: 10px;
}
.badge-Update {
position:absolute;
bottom: 50px;
right : 20%;
border: 5px solid gold;
background-color: yellow;
color: goldenrod;
padding: 4px 8px;
text-align: center;
border-radius: 10px;
}
/* Invisible Badge */
/* This is used to hide the badge when not needed, but keep the layout intact */
.invisible {
position:absolute;
bottom: 0px;
right : 20%;
border: 5px solid transparent;
background-color: transparent;
color: transparent;
padding: 4px 8px;
text-align: center;
border-radius: 10px;
}