-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmstyle.css
182 lines (139 loc) · 3.89 KB
/
mstyle.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
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
@import url('https://fonts.googleapis.com/css?family=Rubik');
body {
font-size:16px;
}
/* HEADER BUSINESS */
header {
background-color:white;
}
.logoWrapper {
width:100%;
text-align:center;
}
.logoLogo {
width:30%;
height:auto;
mix-blend-mode: multiply;
}
/*FRAME HORIZONTAL LOGIC*/
.parent {
display: flex;
width: 100%;
height: 100px;
align-items: center; /* Align Items Vertically */
justify-content: space-between; /* Align Items Horizontally (with equal space in between each of them */
background: #eee;
}
.children {
display: flex;
}
.child {
margin: 0 5px;
padding: 0 5px;
font-size: 30px;
background: #ccc;
color: #000;
}
/*TEMP SHUT OFF THE HEADER */
.topHeaderClass {display: none;}
.topHeaderClass{
height:150px;
width:100%;
background-color:white;
border-style:solid;
border-color:black;
border-size:10px;
}
.leftSideDeckClass {
width:150px;
height:auto;
background-color:white;
border-style:solid;
border-color:black;
border-size:10px;
border-radius:2.5px;
}
.mainFrameDeckWRAPPER {
/*This is going to be the mainDeckWrapper baby boyyyy */
height: 200px;
position: absolute;
display: flex;
border: 3px solid rgb(0, 0, 0);
}
.mainFrameDeckClass {
width:100%;
height:360px;
background-color:rgba(255, 178, 255, 0.505);
border-style:solid;
border-color:black;
border-size:10px;
margin-top:10px;
max-width:720px;
}
.bottomFrameDeckClass {
width:100%;
height: 100px;
background-color:white;
border-style:solid;
border-color:black;
border-size:10px;
margin-top:10px;
}
.singleFrameClass {
background-color:black;
width:10px;
height:40px;
margin:10px;
display:flex;
text-align:center;
padding:10px;
flex-direction: column;
}
.rotatedText {
color:white;
transform:translate(-90deg);
font-size:16px;
}
.leftSideDeckLittleVerticalBabyMenu {
display:block;
}
.buttonSideA {
width:100%;
background-color:rgb(0, 0, 0);
color:white;
border-style:solid;
border-color:black;
border-size:1px;
}
.buttonSideA:hover {
width:100%;
background-color:rgb(255, 255, 255);
color:rgb(0, 0, 0);
border-style:solid;
border-color:black;
border-size:1px;
}
.linkSuperBig{
padding:20px;
font-size:11px;
text-align:center;
height:100px;
width:100%;
background-color:rgb(0, 0, 0);
color:white;
border-style:solid;
border-color:black;
border-size:1px;
}
.linkSuperBig:hover {
padding:20px;
font-size:11px;
text-align:center;
height:100px;
width:100%;
background-color:rgb(255, 255, 255);
color:rgb(0, 0, 0);
border-style:solid;
border-color:black;
border-size:1px;
}