-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
194 lines (163 loc) · 2.79 KB
/
style.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
183
184
185
186
187
188
189
190
191
192
193
194
/*
Color Scheme:
Blue: #69D4F5
Pink: #F58882
Yellow: #FAE373
Green: #5DF597
Generated using Adobe Color Wheel: https://color.adobe.com/create/color-wheel
Not gonna lie, I was to lazy to put a lot of the in-line CSS into this file. Sorry!
*/
/* To avoid doing a mobile version */
.desktop {
display: none;
}
.mobile {
display: contents;
}
@media only screen and (min-width: 1350px) {
.desktop {
display: initial;
}
.mobile {
display: none;
}
}
/* Defualt HTML Tags*/
html, body {
font-family: Arial, Helvetica, sans-serif;
color: #404040;
}
h1 {
text-align: center;
margin: 15px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
font-size: 3rem;
}
table {
border-collapse: collapse;
width: 90% !important;
margin: auto;
}
td {
border: 1px solid #B0B0B0;
width: 20%;
position: relative;
text-align: center;
}
td:before {
margin-top: 35%;
display: block;
content: '';
}
td:after {
margin-top: 35%;
display: block;
content: '';
}
th {
border: 1px solid #fff;
color: #fff;
width: 20%;
position: relative;
background-color: #b0b0b0;
}
th:before {
margin-top: 35%;
content: '';
display: block;
}
th:after {
margin-top: 35%;
content: '';
display: block;
}
/* Custom Tags */
#top {
border-radius: 5px;
background-color: #404040;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 10px;
color: white;
}
#topbar {
position: fixed;
top: 0;
background-color: white;
width: calc(100% - 16px);
height: 200px;
}
#nav a {
text-decoration: none;
}
#nav .row:after {
content: "";
display: table;
clear: both;
}
#nav .column {
float: left;
width: 25%;
}
#navButton {
color: white;
font-size: 3rem;
text-align: center;
border-radius: 5px;
padding: 10px;
margin: 10px;
cursor: pointer;
max-height: 60px;
}
.flex-container {
display: flex;
flex-wrap: wrap;
}
#flex-break {
flex-basis: 100%;
height: 0;
}
#content {
margin-top: 250px;
}
#widebox {
margin: 10px;
border-radius: 10px;
border: 10px solid;
height: calc(50vw - 48px);
width: 100%;
min-height: 800px;
}
#widebox .column {
float: left;
width: 50%;
}
#mediumbox {
margin: 10px;
border: 10px solid;
border-radius: 10px;
height: calc(50vw - 48px);
width: calc(50% - 40px);
min-height: 800px;
}
img {
border-radius: 10px !important;
}
/* Introduction Page */
#intro-flex div {
border-color: #F58882;
}
/* Quaternion Page */
#quat-flex div {
border-color: #69D4F5;
}
/* Vector Page */
#vector-flex div {
border-color: #B466E1;
}
/* Applications */
#app-flex div {
border-color: #5DF597;
}