-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
229 lines (193 loc) · 3.4 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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
body.tjing {
background: #20207a;
background: -webkit-linear-gradient(top left, #20207a, #035c41);
background: -moz-linear-gradient(top left, #20207a, #035c41);
background: linear-gradient(to bottom right, #20207a, #035c41);
background-size: cover;
overflow-x: hidden; /* Hide hor scrollbars */
}
body{
font: 15px Arial, sans-serif;
text-shadow: 1px 1px 24px #999999;
}
object {
display: inline-block;
width: 55vw;
height: 125vh;/*100vh;*/
overflow: hidden; /* Hide scrollbars */
}
div{
border: 2px none #000;
border-radius: 7px;
margin: 8px;
padding: 8px;
height: auto;
}
div.title{
background: radial-gradient( circle 311px at 8.6% 27.9%, rgba(62,147,252,0.57) 12.9%, rgba(239,183,192,0.44) 91.2% );
margin: 8px;
padding: 0px;
box-shadow: 0px 0px 12px rgba(0, 0, 0, .3);
}
div.content{
background: #ffffff;
margin: 8px;
padding: 8px;
width: 69%;
box-shadow: 0px 0px 12px rgba(0, 0, 0, .3);
}
div.sidebar{
background: #ffffff;
margin: 8px;
padding: 8px;
width: 30%;
box-shadow: 0px 0px 12px rgba(0, 0, 0, .3);
}
.thin-div{
border: 0px;
}
.compact{
}
.flex-container {
display: flex;
flex-wrap: nowrap;
}
.smallest {
scale: 0.5;
}
.small {
scale: 0.75;
}
.thin-scroll{
scrollbar-width: thin;
}
.center{
text-align: center;
}
.left-text{
text-align: left;
}
.right-text{
text-align: left;
}
.flagimtoshi {
color: #ffffff;
text-align: left;
}
.vertical-center{
vertical-align: center;
}
.white {
color: #ffffff;
}
.white-bg {
background-color: #ffffff;
}
.fullscreen{
width: 100%;
height: 100%;
}
.floatleft{
float:left;
}
.floatright{
float:right;
}
#wrapper {
width: 500px;
/*border: 1px solid black;*/
overflow: hidden; /* add this to contain floated children */
padding: 0px;
margin: 0px;
}
#contentdiv {
width: 69%;
float:left; /* add this */
/*border: 1px solid red;*/
margin-right: 0px;
}
#sidebardiv {
width: 26%;
/*border: 1px solid green;*/
float: right; /* add this */
padding: 2px;
margin-left: 0px;
}
#contentset {
width: 100%;
}
@media (max-width: 767px) {
.hidden-mobile {
display: none;
}
.fullscreen-mobile {
width: 100%;
margin: 0px;
padding: 0px;
float:left;
}
.divpadding-mobile {
width: 100vw;
margin: 0px;
padding: 0px;
float:left;
}
#contentdiv {
/*width: 95.5%;*/
width: calc(100% - 32px);
}
}
.btn-group button {
background-color: rgba(23, 96, 155, 0.3);/*0.961);*/
box-shadow: 0px 0px 16px rgba(0,0,0,0.3);
border: 2px solid rgb(255, 255, 255, 0);
color: white;
padding: 5px 0px;/*24px*/
margin: 5px;
cursor: pointer;
float: left;
width:calc( 25% - 10px);
border-radius: 7px;
text-align: center;
/*transition: filter 0.5s;*/
/*transition: size: 1s;*/
transition: all .3s ease-in-out;
}
.btn-group button:not(:last-child) {
border-right: none; /* Prevent double borders */
}
/* Clear floats (clearfix hack) */
.btn-group:after {
content: "";
clear: both;
display: table;
}
/* Add a background color on hover */
.btn-group button:hover {
filter: brightness(170%);
scale: 1.05;
transition: all .3s ease-in-out;
}
.grow {
transition: all .2s ease-in-out;
}
.grow:hover {
transform: scale(1.1);
}
a:link {
color: gray;
}
a:visited {
color: gray;
}
a:hover {
color: blue;
}
a:active {
color: teal;
}
.card {
background-color: white;
padding: 20px;
margin-top: 20px;
}