1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2025-07-17 06:09:50 +02:00

minor fix

This commit is contained in:
Xuan Sang LE
2018-02-22 19:15:03 +01:00
parent 5bc9780877
commit 4fa07bf89c
6 changed files with 44 additions and 27 deletions

View File

@ -25,6 +25,7 @@
<head>
<!--script type="text/javascript" src="../os/scripts/jquery-3.2.1.min.js"></script-->
<script type="text/javascript" src="rst/showdown.min.js"></script>
<link rel="stylesheet" type="text/css" href="grs/ubuntu-regular.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" type="text/css" href="rst/font-awesome.css" />
<title>Porfolio</title>

View File

@ -6,7 +6,7 @@ local rq = (JSON.decodeString(REQUEST.query.json))
local to = "xsang.le@gmail.com"
local from = "From: "..rq.email.."\n"
local suject = "Subject: "..rq.subject.."\n"
local content = "Contact request from:"..rq.name.."\n Email:"..rq.email.."\n"..rq.content.."\n"
local content = "Contact request from:"..rq.name.."\n Email: "..rq.email.."\n"..rq.content.."\n"
local cmd = 'echo "'..utils.escape(from..suject..content)..'"| sendmail '..to

View File

@ -1,28 +1,28 @@
@font-face {
font-family: 'FuturaBold';
font-family: 'Futura';
src: url('rst/fonts/FuturaNewDemi.woff') format('woff');
font-weight: normal;
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'FuturaNormal';
font-family: 'Futura';
src: url('rst/fonts/FuturaNewLight.woff') format('woff');
font-weight: normal;
font-style: normal;
}
/** Generated by FG **/
@font-face {
font-family: 'FuturaItalic';
font-family: 'Futura';
src: url('rst/fonts/FuturaNewLightOblique.woff') format('woff');
font-weight: normal;
font-style: normal;
font-style: italic;
}
.layout{
width:800px;
font-family: "FuturaNormal";
font-family: "Futura";
text-align: justify;
margin:0 auto;
display: flex;
@ -33,7 +33,7 @@ h1 {
font-size: 25px;
text-align: center;
margin-top: 20px;
font-family: "FuturaBold";
font-weight: bold;
}
h1 .name{
color:#3170B2;
@ -88,9 +88,12 @@ h1 .cv{
color:#3170B2;
border-bottom: 1px solid #3170B2;
}
a{
text-decoration: none;
color:#3170B2;
}
.sub-container h2
{
color:#3170B2;
font-size:18px;
color:#3170B2;
border-bottom: 1px dotted #3170B2;
@ -99,7 +102,7 @@ h1 .cv{
margin-bottom: 10px;
}
.entry .title{
font-family: "FuturaBold";
font-weight: bold;
}
.entry p .title .fa{
color:#878887;
@ -113,11 +116,11 @@ h1 .cv{
}
.entry .location{
float:right;
font-family: "FuturaItalic";
font-style: italic;
color: #662702;
}
.entry-short-des{
font-family: "FuturaItalic";
font-style: italic;
padding-left: 13px;
margin-bottom: 5px;
}
@ -129,5 +132,12 @@ h1 .cv{
padding-left: 13px;
}
.title-optional{
font-family: "FuturaItalic";
font-style: italic;
}
hr{
display: block;
height: 1px;
border: 0;
border-top: 1px solid #878887;
padding: 0;
}