kopia lustrzana https://github.com/JOSM/MapWithAI
Copy Mapillary Pages branch with some modifications
Signed-off-by: Taylor Smock <smocktaylor@gmail.com>pages
commit
fe83fe8dc5
|
@ -0,0 +1,16 @@
|
|||
image: alpine:3.8
|
||||
|
||||
pages:
|
||||
stage: deploy
|
||||
environment:
|
||||
name: pages site
|
||||
url: "https://${CI_PROJECT_NAMESPACE}.gitlab.io/${CI_PROJECT_NAME}"
|
||||
script:
|
||||
- mkdir .public
|
||||
- cp -r * .public
|
||||
- mv .public public
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
only:
|
||||
- pages@smocktaylor/RapiD
|
Plik binarny nie jest wyświetlany.
Plik binarny nie jest wyświetlany.
Po Szerokość: | Wysokość: | Rozmiar: 55 KiB |
Plik binarny nie jest wyświetlany.
Po Szerokość: | Wysokość: | Rozmiar: 3.7 KiB |
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset=utf8>
|
||||
<link rel=stylesheet href="style/default.css">
|
||||
<title>RapiD-plugin for JOSM</title>
|
||||
|
||||
<div class=container>
|
||||
<h1>RapiD-plugin for JOSM <img src="img/josm_logo_100.png" style="height:1em"></h1>
|
||||
|
||||
<a href="https://gitlab.com/smocktaylor/RapiD">Code mirror on GitLab</a>
|
||||
<a href="https://gitlab.com/smocktaylor/RapiD/pipelines">CI builds (with downloadable artifacts)</a><br>
|
||||
</div>
|
|
@ -0,0 +1,50 @@
|
|||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: local('Roboto Light'), local('Roboto-Light'), url(../fonts/Roboto-Light.ttf);
|
||||
}
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
body {
|
||||
font-family: Roboto, sans-serif;
|
||||
background-image: url('../img/bg.png');
|
||||
background-color: #333;
|
||||
color:white;
|
||||
font-size: 18px;
|
||||
}
|
||||
h1,h2 {
|
||||
font-weight:100;
|
||||
}
|
||||
h1 {
|
||||
font-size:2.5em;
|
||||
}
|
||||
h2 {
|
||||
font-size:1.5em;
|
||||
}
|
||||
.container {
|
||||
text-align: center;
|
||||
}
|
||||
ul {
|
||||
padding:0;
|
||||
}
|
||||
ul li {
|
||||
list-style: none;
|
||||
}
|
||||
.container a {
|
||||
color:#ddd;
|
||||
text-decoration: none;
|
||||
border:1px solid white;
|
||||
padding:.75em;
|
||||
margin:.5em;
|
||||
display:inline-block;
|
||||
box-shadow: 0 0 0 #36af6d;
|
||||
transition:.25s ease box-shadow, .5s ease border-color, .5s ease color, 1.5s ease background;
|
||||
}
|
||||
a:hover {
|
||||
color:#fff;
|
||||
border-color: #36af6d;
|
||||
box-shadow: 0 0 8px #36af6d;
|
||||
background: rgba(54,175,109,.2)
|
||||
}
|
Ładowanie…
Reference in New Issue