mirror of
https://github.com/lxsang/antd-web-apps
synced 2025-07-23 09:09:57 +02:00
finish the info client
This commit is contained in:
10
grs/Makefile
Normal file
10
grs/Makefile
Normal file
@ -0,0 +1,10 @@
|
||||
BUILDDIR = ../build/grs
|
||||
|
||||
copyfiles = font-awesome.css fonts images showdown.min.js ubuntu-regular.css mainsite.css hermit-light.css
|
||||
|
||||
main:
|
||||
- mkdir $(BUILDDIR)
|
||||
cp -rf $(copyfiles) $(BUILDDIR)
|
||||
- cd $(BUILDDIR) && ln -s ../os/resources/themes/antos/fonts/ ./gfonts && ln -s ../os/scripts/ ./gscripts
|
||||
clean:
|
||||
rm -rf $(BUILDDIR)/*
|
2337
grs/font-awesome.css
vendored
Normal file
2337
grs/font-awesome.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
grs/fonts/FuturaNewBold.woff
Normal file
BIN
grs/fonts/FuturaNewBold.woff
Normal file
Binary file not shown.
BIN
grs/fonts/FuturaNewDemi.woff
Normal file
BIN
grs/fonts/FuturaNewDemi.woff
Normal file
Binary file not shown.
BIN
grs/fonts/FuturaNewLight.woff
Normal file
BIN
grs/fonts/FuturaNewLight.woff
Normal file
Binary file not shown.
BIN
grs/fonts/FuturaNewLightOblique.woff
Normal file
BIN
grs/fonts/FuturaNewLightOblique.woff
Normal file
Binary file not shown.
12
grs/hermit-light.css
Executable file
12
grs/hermit-light.css
Executable file
@ -0,0 +1,12 @@
|
||||
/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on August 6, 2017 */
|
||||
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: 'HermitLight';
|
||||
src: url('gfonts/hermit-light-webfont.woff2') format('woff2'),
|
||||
url('gfonts/hermit-light-webfont.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
|
||||
}
|
BIN
grs/images/mrsang.png
Normal file
BIN
grs/images/mrsang.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 110 KiB |
84
grs/mainsite.css
Normal file
84
grs/mainsite.css
Normal file
@ -0,0 +1,84 @@
|
||||
#layout{
|
||||
width:100%;
|
||||
font-family: "Ubuntu";
|
||||
font-size: 14px;
|
||||
/*margin:0 auto;
|
||||
display: flex;
|
||||
flex-direction: row-reverse;
|
||||
color: #414339;*/
|
||||
}
|
||||
#top{
|
||||
background-color: #2c2c2c;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
display: block;
|
||||
text-align: center;
|
||||
|
||||
height: 50px;
|
||||
}
|
||||
#top ul{
|
||||
padding:0;
|
||||
margin: 0;
|
||||
padding-top: 16px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-direction: row;
|
||||
list-style: none;
|
||||
}
|
||||
#top ul li{
|
||||
/*float: left;*/
|
||||
padding-left:10px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
#top ul li i{
|
||||
margin-right: 3px;
|
||||
}
|
||||
#top ul li a{
|
||||
text-decoration: none;
|
||||
color: white;
|
||||
}
|
||||
#top ul li a:hover{
|
||||
border-bottom: 1px dashed white;
|
||||
}
|
||||
#bottom{
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
height: 20px;
|
||||
text-align: center;
|
||||
color:#878887;
|
||||
font-size: 12px;
|
||||
width: 100%;
|
||||
padding:5px;
|
||||
border-top: 1px solid #878887;
|
||||
}
|
||||
#container{
|
||||
margin-top: 50px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-direction: row;
|
||||
}
|
||||
#container img{
|
||||
max-height: 250px;
|
||||
}
|
||||
#vcard {
|
||||
margin-left: 20px;
|
||||
}
|
||||
#vcard p.greeting{
|
||||
font-size: 30px;
|
||||
color: #414339;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
#vcard p.dedicate{
|
||||
color: #414339;
|
||||
/*font-family: "HermitLight";
|
||||
text-align: justify;
|
||||
*/
|
||||
font-size: 16px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
line-height: 1.6;
|
||||
width: 500px;
|
||||
|
||||
}
|
3
grs/showdown.min.js
vendored
Normal file
3
grs/showdown.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
39
grs/ubuntu-regular.css
Executable file
39
grs/ubuntu-regular.css
Executable file
@ -0,0 +1,39 @@
|
||||
/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on August 6, 2017 */
|
||||
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: 'Ubuntu';
|
||||
src: url('gfonts/ubuntu-regular-webfont.woff2') format('woff2'),
|
||||
url('gfonts/ubuntu-regular-webfont.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Ubuntu';
|
||||
src: url('gfonts/ubuntu-bold-webfont.woff2') format('woff2'),
|
||||
url('gfonts/ubuntu-bold-webfont.woff') format('woff');
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Ubuntu';
|
||||
src: url('gfonts/ubuntu-bolditalic-webfont.woff2') format('woff2'),
|
||||
url('gfonts/ubuntu-bolditalic-webfont.woff') format('woff');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Ubuntu';
|
||||
src: url('gfonts/ubuntu-italic-webfont.woff2') format('woff2'),
|
||||
url('gfonts/ubuntu-italic-webfont.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
|
||||
}
|
Reference in New Issue
Block a user