Skip to content

Commit 85dac1a

Browse files
committed
updated logo, fonts
1 parent 45ed585 commit 85dac1a

13 files changed

+5893
-304
lines changed

css/styles.css

+12-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* Start Bootstrap - v1.0.0 (https://github.com/UniversalViewer/universalviewer.github.io#readme)
3-
* Copyright 2013-2018 Edward Silverton <[email protected]> (http://edsilv.com)
3+
* Copyright 2013-2020 Edward Silverton <[email protected]> (http://edsilv.com)
44
* Licensed under ()
55
*/
66
body.home header {
@@ -33,7 +33,7 @@ body.home header .header-content .header-content-inner hr {
3333
margin: 30px auto;
3434
}
3535
body.home header .header-content .header-content-inner p {
36-
font-weight: 400;
36+
font-weight: bold;
3737
color: rgba(255, 255, 255, 0.95);
3838
font-size: 18px;
3939
margin-bottom: 50px;
@@ -144,7 +144,7 @@ body.home .call-to-action h2 {
144144
}
145145
body.home span.explanatory {
146146
display: block;
147-
font-size: 12px;
147+
font-size: 14px;
148148
}
149149
body.home #moreinfo {
150150
padding-bottom: 0px;
@@ -193,7 +193,7 @@ body {
193193
width: 100%;
194194
}
195195
body {
196-
font-family: 'Merriweather', 'Helvetica Neue', Arial, sans-serif;
196+
font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
197197
webkit-tap-highlight-color: #222222;
198198
}
199199
hr {
@@ -223,7 +223,7 @@ h3,
223223
h4,
224224
h5,
225225
h6 {
226-
font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
226+
font-family: 'Inter', sans-serif;
227227
}
228228
p {
229229
font-size: 16px;
@@ -249,14 +249,14 @@ aside {
249249
.navbar-default {
250250
background-color: white;
251251
border-color: rgba(34, 34, 34, 0.05);
252-
font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
252+
font-family: 'Inter', sans-serif;
253253
-webkit-transition: all 0.35s;
254254
-moz-transition: all 0.35s;
255255
transition: all 0.35s;
256256
}
257257
.navbar-default .navbar-header .navbar-brand {
258258
color: #3e114e;
259-
font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
259+
font-family: 'Inter', sans-serif;
260260
font-weight: 700;
261261
text-transform: uppercase;
262262
}
@@ -344,6 +344,11 @@ aside {
344344
padding-right: 0;
345345
padding-left: 0;
346346
}
347+
@media (min-width: 1200px) {
348+
.col-lg-3 {
349+
width: 24%;
350+
}
351+
}
347352
.btn-default {
348353
color: #222222;
349354
background-color: white;

css/styles.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

img/_header.jpg

-242 KB
Binary file not shown.

img/_logo.png

17.5 KB
Loading

img/logo.png

-16.5 KB
Loading

index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<!-- Custom Fonts -->
1818
<link href="/vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
1919
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
20-
<link href='https://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
20+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
2121

2222
<!-- Plugin CSS -->
2323
<link href="/vendor/magnific-popup/magnific-popup.css" rel="stylesheet">
@@ -348,10 +348,10 @@ <h2 class="section-heading">Get In Touch</h2>
348348
<a href="https://docs.google.com/forms/d/e/1FAIpQLSeHLD0kng5aXvGFsNN_tJGsZMTnp08Hv2F6kdGsJRb6bT0NWw/viewform">Join the UV Slack</a>
349349
<span class="explanatory">This is where most of the conversation happens</span>
350350
</p>
351-
<p>
351+
<!-- <p>
352352
<a href="https://groups.google.com/forum/#!forum/universalviewer">Join the UV Google Group</a>
353353
<span class="explanatory">A good place to ask questions if you are just trying out the UV</span>
354-
</p>
354+
</p> -->
355355
<p>
356356
<a href="https://twitter.com/universalviewer">Follow the UV on Twitter</a>
357357
<span class="explanatory">A good way to keep informed of notable developments</span>

js/index.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

less/home.less

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ body.home {
2626
margin: 30px auto;
2727
}
2828
p {
29-
font-weight: 400;
29+
font-weight: bold;
3030
color: fade(white, 95%);
3131
font-size: 18px;
3232
margin-bottom: 50px;
@@ -150,7 +150,7 @@ body.home {
150150

151151
span.explanatory {
152152
display: block;
153-
font-size: 12px;
153+
font-size: 14px;
154154
}
155155

156156
#moreinfo {

less/mixins.less

+66-62
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,67 @@
1-
// Mixins
2-
3-
.transition-all() {
4-
-webkit-transition: all 0.35s;
5-
-moz-transition: all 0.35s;
6-
transition: all 0.35s;
7-
}
8-
9-
.background-cover() {
10-
-webkit-background-size: cover;
11-
-moz-background-size: cover;
12-
background-size: cover;
13-
-o-background-size: cover;
14-
}
15-
16-
.button-variant(@color; @background; @border) {
17-
color: @color;
18-
background-color: @background;
19-
border-color: @border;
20-
.transition-all;
21-
22-
&:hover,
23-
&:focus,
24-
&.focus,
25-
&:active,
26-
&.active,
27-
.open > .dropdown-toggle& {
28-
color: @color;
29-
background-color: darken(@background, 5%);
30-
border-color: darken(@border, 7%);
31-
}
32-
&:active,
33-
&.active,
34-
.open > .dropdown-toggle& {
35-
background-image: none;
36-
}
37-
&.disabled,
38-
&[disabled],
39-
fieldset[disabled] & {
40-
&,
41-
&:hover,
42-
&:focus,
43-
&.focus,
44-
&:active,
45-
&.active {
46-
background-color: @background;
47-
border-color: @border;
48-
}
49-
}
50-
51-
.badge {
52-
color: @background;
53-
background-color: @color;
54-
}
55-
}
56-
57-
.sans-serif-font() {
58-
font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
59-
}
60-
61-
.serif-font() {
62-
font-family: 'Merriweather', 'Helvetica Neue', Arial, sans-serif;
1+
// Mixins
2+
3+
.transition-all() {
4+
-webkit-transition: all 0.35s;
5+
-moz-transition: all 0.35s;
6+
transition: all 0.35s;
7+
}
8+
9+
.background-cover() {
10+
-webkit-background-size: cover;
11+
-moz-background-size: cover;
12+
background-size: cover;
13+
-o-background-size: cover;
14+
}
15+
16+
.button-variant(@color; @background; @border) {
17+
color: @color;
18+
background-color: @background;
19+
border-color: @border;
20+
.transition-all;
21+
22+
&:hover,
23+
&:focus,
24+
&.focus,
25+
&:active,
26+
&.active,
27+
.open > .dropdown-toggle& {
28+
color: @color;
29+
background-color: darken(@background, 5%);
30+
border-color: darken(@border, 7%);
31+
}
32+
&:active,
33+
&.active,
34+
.open > .dropdown-toggle& {
35+
background-image: none;
36+
}
37+
&.disabled,
38+
&[disabled],
39+
fieldset[disabled] & {
40+
&,
41+
&:hover,
42+
&:focus,
43+
&.focus,
44+
&:active,
45+
&.active {
46+
background-color: @background;
47+
border-color: @border;
48+
}
49+
}
50+
51+
.badge {
52+
color: @background;
53+
background-color: @color;
54+
}
55+
}
56+
57+
.header-font() {
58+
font-family: 'Inter', sans-serif;
59+
}
60+
61+
.sans-serif-font() {
62+
font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
63+
}
64+
65+
.serif-font() {
66+
font-family: 'Merriweather', 'Helvetica Neue', Arial, sans-serif;
6367
}

0 commit comments

Comments
 (0)