1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2024-11-20 02:18:20 +01:00
antd-web-apps/info/style.css

185 lines
3.0 KiB
CSS
Raw Normal View History

2018-02-20 18:24:03 +01:00
@font-face {
2018-02-22 19:15:03 +01:00
font-family: 'Futura';
2018-02-21 10:10:38 +01:00
src: url('rst/fonts/FuturaNewDemi.woff') format('woff');
2018-02-22 19:15:03 +01:00
font-weight: bold;
2018-02-20 18:24:03 +01:00
font-style: normal;
}
@font-face {
2018-02-22 19:15:03 +01:00
font-family: 'Futura';
2018-02-21 10:10:38 +01:00
src: url('rst/fonts/FuturaNewLight.woff') format('woff');
2018-02-20 18:24:03 +01:00
font-weight: normal;
font-style: normal;
}
/** Generated by FG **/
@font-face {
2018-02-22 19:15:03 +01:00
font-family: 'Futura';
2018-02-21 10:10:38 +01:00
src: url('rst/fonts/FuturaNewLightOblique.woff') format('woff');
2018-02-20 18:24:03 +01:00
font-weight: normal;
2018-02-22 19:15:03 +01:00
font-style: italic;
2018-02-20 18:24:03 +01:00
}
.layout{
2018-02-22 20:46:56 +01:00
max-width:960px;
2018-02-22 19:15:03 +01:00
font-family: "Futura";
2018-02-20 18:24:03 +01:00
text-align: justify;
2018-02-21 19:04:26 +01:00
margin:0 auto;
display: flex;
flex-direction: row-reverse;
/*color: #414339;*/
2018-02-20 18:24:03 +01:00
}
2018-09-11 10:35:02 +02:00
2018-10-19 11:20:56 +02:00
.layout div.container{
2021-01-05 20:12:35 +01:00
display: block;
2018-10-19 11:20:56 +02:00
}
.layout div.container_active{
display: block;
}
2018-09-11 10:35:02 +02:00
.layoutprint{
max-width:960px;
font-family: "Ubuntu";
text-align: justify;
margin:0 auto;
display: flex;
flex-direction: row-reverse;
color: #414339;
}
2018-10-19 11:20:56 +02:00
.layoutprint div.container{
display: block;
}
2018-02-20 18:24:03 +01:00
h1 {
font-size: 25px;
text-align: center;
margin-top: 20px;
2018-02-22 19:15:03 +01:00
font-weight: bold;
2018-02-20 18:24:03 +01:00
}
h1 .name{
color:#3170B2;
border-right: 2px solid #878887;
padding-right: 10px;
}
2018-02-21 19:04:26 +01:00
.cv-toc{
display: block;
text-align: right;
min-width: 180px;
margin-top: 135px;
margin-right: 10px;
border-right: 1px dashed #878887;
}
.cv-toc ul{
margin: 0;
padding:0;
padding-right: 10px;
list-style: none;
}
.cv-toc ul a{
color:#414339;
text-decoration: none;
display: inline-block;
padding-bottom: 3px;
}
.cv-toc ul a:hover{
border-bottom: 1px dashed #878887;
}
.cv-content{
display: block;
}
2018-02-20 18:24:03 +01:00
h1 .cv{
color:#878887;
2018-02-21 19:04:26 +01:00
padding-left: 10px;
2018-02-20 18:24:03 +01:00
}
.coordination {
color:#878887;
text-align: center;
}
.coordination span.text{
margin-right: 10px;
}
.shortbio span.fa{
color:#878887;
}
2018-10-19 11:20:56 +02:00
.container h1, .container_active h1, .container_footer h1{
2018-02-20 18:24:03 +01:00
font-size:20px;
text-align: left;
color:#3170B2;
border-bottom: 1px solid #3170B2;
}
2018-10-19 11:20:56 +02:00
.toc_active {
font-weight: bold;
}
.cv-toc ul li.toc_active a{
/*border-bottom: 1px dashed #878887;*/
color:#3170B2;
}
2018-02-22 19:15:03 +01:00
a{
text-decoration: none;
color:#3170B2;
}
2018-02-20 18:24:03 +01:00
.sub-container h2
{
font-size:18px;
color:#3170B2;
border-bottom: 1px dotted #3170B2;
}
.entry{
margin-bottom: 10px;
}
.entry .title{
2018-02-22 19:15:03 +01:00
font-weight: bold;
2018-02-20 18:24:03 +01:00
}
.entry p .title .fa{
color:#878887;
}
.entry p{
padding:0;
margin:0;
}
.entry p span.fa{
color:#878887;
}
.entry .location{
float:right;
2018-02-22 19:15:03 +01:00
font-style: italic;
2018-02-21 19:04:26 +01:00
color: #662702;
2018-02-20 18:24:03 +01:00
}
.entry-short-des{
2018-02-22 19:15:03 +01:00
font-style: italic;
2018-02-20 18:24:03 +01:00
padding-left: 13px;
2018-02-21 19:04:26 +01:00
margin-bottom: 5px;
2018-02-20 18:24:03 +01:00
}
.entry-short-des span.date{
float:right;
}
.entry-description{
clear: both;
padding-left: 13px;
}
.title-optional{
2018-02-22 19:15:03 +01:00
font-style: italic;
}
hr{
display: block;
height: 1px;
border: 0;
border-top: 1px solid #878887;
padding: 0;
2018-10-17 19:48:31 +02:00
}
2021-01-05 20:12:35 +01:00
img {max-width:100%}
.header_container {
display: block;
width: 100%;
}
.header_container img {
float: left;
max-width: 150px;
margin-right: 10px;
margin-bottom: 20px;
display: block;
}