Skip to content

Commit 33395f5

Browse files
author
opengisch
committed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+779
-336
lines changed

opengisch-about-us/_assets/stylesheets/main-style.css

Lines changed: 65 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,24 @@
44
--r-background-color: var(--opengisch-white);
55
}
66

7-
/* hr {
8-
margin-top: 20px;
9-
padding: 0;
7+
#qf-logo { /* left corner qfield logo*/
8+
position: fixed;
9+
top: 500px;
10+
z-index: 1000;
1011
}
1112

12-
.v-separator {
13-
margin-top: 20px;
14-
padding: 0;
15-
} */
13+
#qf-logo img { /* left corner qfield logo*/
14+
width: 120px;
15+
opacity: 0.5;
16+
}
1617

1718
h1 { /* main titles */
1819
color: var(--opengisch-dark);
1920
font-weight: bold;
2021
font-size: 50pt;
2122
line-height: 48pt;
22-
text-align: left;
23+
text-align: left;x
24+
font-family: "bio-sans", sans-serif;
2325
}
2426

2527
h1:nth-child(2) {
@@ -35,15 +37,31 @@ h2 { /* smaller main titles */
3537
font-size: 30pt;
3638
font-weight: bold;
3739
text-align: left;
38-
margin-bottom: 20px;
40+
font-family: "bio-sans", sans-serif;
41+
}
42+
43+
h2:nth-child(2) {
44+
color: var(--opengisch-green);
45+
}
46+
47+
h2:last-of-type {
48+
margin-bottom: 60px;
3949
}
4050

4151
h3 { /* secondary titles */
4252
color: var(--opengisch-dark);
4353
text-align: left;
4454
font-weight: bolder;
4555
font-size: 20pt;
46-
margin-bottom: 50px;
56+
font-family: "bio-sans", sans-serif;
57+
}
58+
59+
h3:nth-child(2) {
60+
color: var(--opengisch-green);
61+
}
62+
63+
h3:last-of-type {
64+
margin-bottom: 35px;
4765
}
4866

4967
h4 { /*text*/
@@ -52,12 +70,16 @@ h4 { /*text*/
5270
font-size: 15pt;
5371
font-weight: lighter;
5472
margin-bottom: 20px;
73+
margin-top: 20px;
74+
font-family: "bio-sans", sans-serif;
75+
line-height: 18pt;
5576
}
5677

5778
h5 { /*text*/
5879
color: var(--opengisch-dark);
5980
text-align: left;
60-
font-size: 10pt;
81+
font-size: 12pt;
82+
font-family: "bio-sans", sans-serif;
6183
}
6284

6385
/* for lists (ul, li) */
@@ -102,8 +124,8 @@ section.present video {
102124
section.present img {
103125
border-radius: 7px;
104126
border: 0.5px;
105-
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
106-
max-width: 600px;
127+
box-shadow: none;
128+
max-width: 900px;
107129
}
108130

109131
/* LOGO */
@@ -115,7 +137,7 @@ section.present.styled-logo img {
115137
box-shadow: none;
116138
}
117139

118-
/* IMG / PNG (NOT LOGO) */
140+
/* IMG / PNG (TRANSPARENT – NO LOGO) */
119141
section.present.custom-center-pic img {
120142
max-width: 100%;
121143
margin-top: 40px;
@@ -142,6 +164,7 @@ section.present.custom-right-pic img {
142164
}
143165

144166

167+
145168
/* –– OTHER –– */
146169

147170
/* COLORED TEXT */
@@ -186,9 +209,9 @@ section.present.custom-right-pic img {
186209
border-radius: 0 !important;
187210
box-shadow: none !important;
188211
position: absolute;
189-
top: 17px;
190-
right: -10px;
191-
width: 20px;
212+
top: 12px;
213+
right: -9px;
214+
width: 13px;
192215
height: auto;
193216
}
194217

@@ -200,5 +223,30 @@ section.present.custom-right-pic img {
200223
height: 100vh;
201224
margin-top: 100px;
202225
opacity: 0.2;
226+
z-index: -1
227+
}
228+
229+
/* UNDERLINE ANIMATION */
230+
231+
.highlight-animate {
232+
position: relative;
233+
display: inline-block;
234+
}
235+
236+
.highlight-animate::before {
237+
content: '';
238+
position: absolute;
239+
left: 0;
240+
bottom: 0;
241+
width: 0%; /* Start with no width */
242+
height: 2px; /* Thin underline effect */
243+
background-color: #80cc28;
244+
animation: slide-highlight 3s ease-out forwards;
203245
z-index: -1;
204246
}
247+
248+
@keyframes slide-highlight {
249+
to {
250+
width: 100%; /* Expand to full width of the text */
251+
}
252+
}
Loading
667 KB
Loading
-37.1 KB
Binary file not shown.

opengisch-about-us/assets/arrow_.png

-51.3 KB
Binary file not shown.

opengisch-about-us/assets/b2b-2.jpg

-759 KB
Binary file not shown.

opengisch-about-us/assets/b2b-3.jpg

-273 KB
Binary file not shown.
Loading

opengisch-about-us/assets/email.png

-8.82 KB
Binary file not shown.
Binary file not shown.
-174 KB
Binary file not shown.
-24.4 KB
Binary file not shown.
455 KB
Loading

opengisch-about-us/assets/special.jpg

-113 KB
Binary file not shown.
-34 KB
Binary file not shown.

opengisch-about-us/assets/team.jpg

-863 KB
Binary file not shown.
-119 KB
Binary file not shown.
287 KB
Loading
108 KB
Loading
-250 KB
Binary file not shown.
-81.7 KB
Binary file not shown.

opengisch-about-us/intro.html

Lines changed: 63 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -35,106 +35,124 @@
3535

3636
---
3737

38-
# WHAT DO
39-
# WE DO?
38+
## WHAT DO
39+
## WE DO?
4040

4141
<!-- .slide: class="custom-center-pic" -->
42-
![whatdowedo](assets/whatdowedo.png)
42+
<img src="assets/whatdowedo1.png" style="width: 85%; margin-top: 80px;" alt="whatdowedo">
4343

4444
---
4545

46-
# WHAT DO
47-
# WE DO?
46+
## WHAT DO
47+
## WE DO?
48+
49+
<!-- .slide: class="custom-left-pic" -->
50+
<img src="assets/whatdowedo2.png" style="width: 77%; margin-top: 18px; margin-right: 33px;" alt="whatdowedo">
4851

49-
<!-- .slide: class="custom-center-pic" -->
50-
![whatdowedo](assets/whatdowedo2.png)
5152

5253
---
5354

54-
# WHAT DO
55-
# WE DO?
55+
## CONNECTING
56+
## THE DOTS
5657

5758
<!-- .slide: class="custom-left-pic" -->
58-
![whatdowedo](assets/whatdowedo_3.png)
59+
<img src="assets/connectingthedots.png" style="width: 45%; height: auto; display: block; margin-top: 130px;" alt="10ynumbers">
60+
5961

6062
---
6163

62-
# SOME
63-
# NUMBERS?
64+
## SOME
65+
## NUMBERS?
6466

6567
<!-- .slide: class="custom-left-pic" -->
66-
<img src="assets/10y-numbers.png" style="width: 50%; height: auto; justify-content: center; display: block;" alt="10ynumbers">
68+
<img src="assets/somenumbers.png" style="width: 50%; height: auto; display: block;" alt="10ynumbers">
6769

6870
---
6971

70-
# OUR
71-
# HISTORY?
72+
## OUR
73+
## HISTORY?
7274

7375
<!-- .slide: class="custom-left-pic" -->
74-
![whatdowedo](assets/history.png)
76+
<img src="assets/history.png" style="width: 90%; margin-top: 100px; height: auto; display: block;" alt="history">
7577

7678
---
7779

78-
# WHY
79-
# WE DO THIS?
80+
## WHY DO WE
81+
## DO THIS?
8082

81-
<!-- .slide: class="custom-left-pic" -->
82-
![whatdowedo](assets/vision.png)
83+
<img src="assets/vision.png" style="width: 100%; margin-top: 100px; height: auto; display: block;" alt="vision">
8384

8485
---
8586

86-
# WHY
87-
# WE DO THIS?
87+
## WHY DO WE
88+
## DO THIS?
8889

89-
<!-- .slide: class="custom-left-pic" -->
90-
![whatdowedo](assets/values.png)
90+
<img src="assets/values.png" style="width: 100%; margin-top: 15px; height: auto; display: block;" alt="values">
9191

9292
---
9393

94-
# WHERE
95-
# ARE WE?
94+
## WHERE
95+
## ARE WE?
9696

97-
### Everywhere and anywhere.
97+
<h4 style="font-weight: bold;">
98+
Everywhere and <span class="highlight-animate">anywhere.</span>
99+
</h4>
98100

99-
<!-- .slide: class="custom-left-pic" -->
100-
![whatdowedo](assets/wherearewe_map2.png)
101+
<img src="assets/OG_world_map.png" style="width: 73%; height: auto; margin-left: 150px; display: block;" alt="wherearewe">
102+
103+
---
104+
105+
## WHERE
106+
## ARE WE?
101107

108+
<h4 style="font-weight: bold;">
109+
Everywhere and <span class="highlight-animate">anywhere.</span>
110+
</h4>
111+
112+
<img src="assets/OG_switzerland_map.png" style="width: 60%; height: auto; margin-left: 150px; display: block;" alt="wherearewe">
102113

103114
---
104115

105-
# WHAT MAKES
106-
# US SPECIAL?✨
116+
## WHAT MAKES
117+
## US SPECIAL?✨
107118

108-
<!-- .slide: class="custom-center-pic" -->
109-
![whatmakesusspecial](assets/whatmakesusspecial.png)
119+
<img src="assets/whatmakesusspecial.png" style="width: 100%; height: auto; display: block; margin: 120px 0px 0px 0px;" alt="whatmakesusspecial">
110120

111121
---
112122

113-
# WHAT MAKES
114-
# US SPECIAL?✨
123+
## WHAT MAKES
124+
## US SPECIAL?✨
125+
126+
<img src="assets/whatmakesusspecial2.png" style="width: 100%; height: auto; display: block; margin: 123px 0px 0px 22px;" alt="whatmakesusspecial">
115127

116-
<!-- .slide: class="custom-center-pic" -->
117-
![whatmakesusspecial](assets/whatmakesusspecial2.png)
118128

119129
---
120130

121-
# WHO WORKS
122-
# WITH US?
131+
## WHO WORKS
132+
## WITH US?
123133

124134
<!-- .slide: class="custom-center-pic" -->
125135
![whatmakesusspecial](assets/OG_clients.png)
126136

127137
---
128138

129-
# WE ARE
130-
# SOCIAL ✍️
139+
## WHAT'S <span style="color: #80cc28;">NEXT? 🚀</span>
140+
141+
<h4 style="font-weight: bold;">
142+
Let’s build something great <span class="highlight-animate">together!</span>
143+
</h4>
144+
145+
<img src="assets/team_2025.jpg" style="width: 60%; height: auto; display: block;" alt="team">
131146

132-
- @OPENGISch
133-
- @QFieldForQGIS
134-
- <a href="https://opengis.ch/blog" style="color: var(--opengisch-green); font-weight: bold; text-decoration: none;">opengis.ch/blog</a>
135147

148+
<div style="display: flex; gap: 100px; margin-top: 40px;">
149+
<span>@OPENGISch</span>
150+
<span>@QFieldForQGIS</span>
151+
<a href="https://opengis.ch/blog" style="color: #80cc28; text-decoration: none;">opengis.ch/blog</a>
152+
</div>
136153

137-
[def]: assets/10y-numbers.png
154+
<!--
155+
[def]: assets/10y-numbers.png -->
138156

139157
</textarea>
140158
</section>

0 commit comments

Comments
 (0)