Browse Source

added .page-title class

tags/v1.0.0
Uvis Grinfelds 9 years ago
parent
commit
7b228f3f68
6 changed files with 7 additions and 7 deletions
  1. +1
    -1
      transfersh-web/download.html
  2. +1
    -1
      transfersh-web/download.image.html
  3. +1
    -1
      transfersh-web/download.markdown.html
  4. +1
    -1
      transfersh-web/download.video.html
  5. +1
    -1
      transfersh-web/index.html
  6. +2
    -2
      transfersh-web/styles/includes/home.less

+ 1
- 1
transfersh-web/download.html View File

@@ -17,7 +17,7 @@ include "includes/head.html"
<section id="home">
<div class="wrapper">
<br/>
<h2>{{.Filename}}</h2>
<h2 class="page-title">{{.Filename}}</h2>
<h4>type: <b>{{.ContentType}}</b></h4>
<h4>size: <b>{{.ContentLength | format "#,###."}}</b> bytes</h4>
<div>


+ 1
- 1
transfersh-web/download.image.html View File

@@ -16,7 +16,7 @@ include "includes/head.html"
<section id="home">
<div class="wrapper">
<br/>
<h2> {{.Filename}}</h2>
<h2 class="page-title" > {{.Filename}}</h2>
<h4>type: <b>{{.ContentType}}</b></h4>
<h4>size: <b>{{.ContentLength | format "#,###."}}</b> bytes</h4>
<div class="row animated fadeInDown">


+ 1
- 1
transfersh-web/download.markdown.html View File

@@ -16,7 +16,7 @@ include "includes/head.html"
<section id="home">
<div class="wrapper">
<br/>
<h2>{{.Filename}}</h2>
<h2 class="page-title">{{.Filename}}</h2>
<h4>type: <b>{{.ContentType}}</b></h4>
<h4>size: <b>{{.ContentLength | format "#,###."}}</b> bytes</h4>
<div class="row animated fadeInDown">


+ 1
- 1
transfersh-web/download.video.html View File

@@ -17,7 +17,7 @@ include "includes/head.html"
<section id="home">
<div class="wrapper">
<br/>
<h2> {{.Filename}}</h2>
<h2 class="page-title"> {{.Filename}}</h2>
<h4>type: <b>{{.ContentType}}</b></h4>
<h4>size: <b>{{.ContentLength | format "#,###."}}</b> bytes</h4>
<div class="row animated fadeInDown">


+ 1
- 1
transfersh-web/index.html View File

@@ -31,7 +31,7 @@ include "includes/head.html"

<section id="home">
<div class="wrapper">
<h2>
<h2 class="page-title">
Easy file sharing from the command line</h2>
<div class="row animated fadeInDown">
<div id="from-terminal" class=" box col-md-8 col-md-offset-2 col-xs-12">


+ 2
- 2
transfersh-web/styles/includes/home.less View File

@@ -1,11 +1,11 @@
#home {
text-align: center;
h2 {
.page-title {
font-size: 30px;
}
@media (min-width: @screen-sm-min) {
padding: 50px;
h2 {
.page-title {
font-size: 45px;
margin-top: -20px;
margin-bottom: 45px;


Loading…
Cancel
Save