mirror of
https://github.com/seigler/dash-docs
synced 2025-07-28 10:16:15 +00:00
Add Press Center with resources, FAQ and interviewees
This commit is contained in:
parent
a5250261ec
commit
f383f2a201
32 changed files with 610 additions and 13 deletions
|
@ -37,6 +37,7 @@ p {
|
|||
}
|
||||
a:link,a:visited,a:active{
|
||||
color:#4892b2;
|
||||
text-decoration:none;
|
||||
}
|
||||
a:link:hover,a:visited:hover,a:active:hover{
|
||||
color:#75bfdf;
|
||||
|
@ -304,6 +305,10 @@ li{
|
|||
-webkit-border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
}
|
||||
#content.wide{
|
||||
padding:20px 40px 30px 30px;
|
||||
max-width:990px;
|
||||
}
|
||||
|
||||
#rightbox{
|
||||
width:210px;
|
||||
|
@ -314,6 +319,10 @@ li{
|
|||
-webkit-border-radius:5px;
|
||||
padding:5px;
|
||||
}
|
||||
#rightbox.wide{
|
||||
display:none;
|
||||
}
|
||||
|
||||
#choose>a:first-child,#before>a:first-child,#support>a:first-child{
|
||||
padding:10px 8px 10px 48px;
|
||||
color:#fff;
|
||||
|
@ -571,6 +580,162 @@ li{
|
|||
-webkit-border-radius:9px;
|
||||
}
|
||||
|
||||
.press h2{
|
||||
font-size:150%;
|
||||
}
|
||||
|
||||
.press-volunteer{
|
||||
text-align:left;
|
||||
-webkit-border-radius: 8px;
|
||||
-moz-border-radius: 8px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
.press-volunteer>p{
|
||||
margin-top:0px;
|
||||
margin-bottom:30px;
|
||||
}
|
||||
.press-volunteer>p>img{
|
||||
vertical-align:bottom;
|
||||
}
|
||||
.press-volunteer>div{
|
||||
width:400px;
|
||||
height:150px;
|
||||
display:inline-block;
|
||||
zoom:1;*display:inline;/*IE7 support*/
|
||||
margin-right:30px;
|
||||
margin-bottom:30px;
|
||||
vertical-align:top;
|
||||
}
|
||||
.press-volunteer>div>img{
|
||||
float:left;
|
||||
margin-right:30px;
|
||||
}
|
||||
.press-volunteer>div>img:first-child+p{
|
||||
font-weight:bold;
|
||||
color:#0d579b;
|
||||
margin:0px;
|
||||
}
|
||||
.press-volunteer>div>img:first-child+p+p{
|
||||
margin:0px;
|
||||
}
|
||||
.press-volunteer>div>img:first-child+p+p+p{
|
||||
font-size:80%;
|
||||
}
|
||||
.press-volunteer>div>img:first-child+p+p+p+p{
|
||||
margin:0px;
|
||||
}
|
||||
|
||||
.press-faq{
|
||||
text-align:left;
|
||||
-webkit-border-radius: 8px;
|
||||
-moz-border-radius: 8px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
.press-faq>div{
|
||||
width:400px;
|
||||
display:inline-block;
|
||||
zoom:1;*display:inline;/*IE7 support*/
|
||||
vertical-align:top;
|
||||
text-align:left;
|
||||
margin-bottom:15px;
|
||||
margin-right:30px;
|
||||
}
|
||||
.press-faq>div>a{
|
||||
display:inline-block;
|
||||
font-weight:bold;
|
||||
margin-right:20px;
|
||||
}
|
||||
.press-faq>div>div{
|
||||
height:0px;
|
||||
overflow:hidden;
|
||||
text-align:justify;
|
||||
transition: height 400ms ease-out;
|
||||
-moz-transition: height 400ms ease-out;
|
||||
-webkit-transition: height 400ms ease-out;
|
||||
}
|
||||
.press-faq li{
|
||||
text-align:justify;
|
||||
line-height:1.5em;
|
||||
}
|
||||
.press-faq>div>span>p{
|
||||
margin-bottom:0px;
|
||||
}
|
||||
|
||||
.press-materials{
|
||||
text-align:left;
|
||||
-webkit-border-radius: 8px;
|
||||
-moz-border-radius: 8px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.press-materials>div>a{
|
||||
font-weight: bold;
|
||||
font-size: 110%;
|
||||
}
|
||||
.press-materials>div{
|
||||
display:inline-block;
|
||||
zoom:1;*display:inline;/*IE7 support*/
|
||||
width:300px;
|
||||
vertical-align:top;
|
||||
position:relative;
|
||||
}
|
||||
.press-materials>div>div{
|
||||
height:270px;
|
||||
overflow:hidden;
|
||||
transition: height 400ms ease-out;
|
||||
-moz-transition: height 400ms ease-out;
|
||||
-webkit-transition: height 400ms ease-out;
|
||||
}
|
||||
.press-materials>div:first-child+div>div img{
|
||||
margin-right: 14px;
|
||||
margin-bottom: 14px;
|
||||
height:120px;
|
||||
width:120px;
|
||||
-webkit-border-radius: 10px;
|
||||
-moz-border-radius: 10px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
.press-materials>div:first-child>div>p>a{
|
||||
margin-right:10px;
|
||||
margin-bottom:10px;
|
||||
display:inline-block;
|
||||
}
|
||||
.press-materials>div:first-child+div+div>div>p{
|
||||
margin-bottom:25px;
|
||||
margin-top:0px
|
||||
}
|
||||
.press-materials>div:first-child+div+div>div>p>span:first-child{
|
||||
font-weight:bold;
|
||||
display:block;
|
||||
}
|
||||
|
||||
.press-news{
|
||||
text-align:left;
|
||||
-webkit-border-radius: 8px;
|
||||
-moz-border-radius: 8px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
.press-news>div{
|
||||
height:125px;
|
||||
margin-bottom:30px;
|
||||
width:700px;
|
||||
}
|
||||
.press-news>div>a>img{
|
||||
float:left;
|
||||
margin-right:30px;
|
||||
}
|
||||
.press-news>div>a:first-child+a{
|
||||
display:block;
|
||||
margin-bottom:10px;
|
||||
}
|
||||
.press-news a:link,.press-news a:active,.press-news a:visited{
|
||||
font-weight:bold;
|
||||
color:#0d579b;
|
||||
}
|
||||
.press-news>div>a:first-child+a+a+p{
|
||||
font-size:80%;
|
||||
}
|
||||
|
||||
.conferencebanner{
|
||||
position:absolute;
|
||||
top:0px;
|
||||
|
@ -644,11 +809,12 @@ li{
|
|||
display:inline-block;
|
||||
margin:10px;
|
||||
}
|
||||
#rightbox{
|
||||
#rightbox,#rightbox.wide{
|
||||
display:block;
|
||||
position:static;
|
||||
margin:30px auto 20px auto;
|
||||
}
|
||||
#content{
|
||||
#content,#content.wide{
|
||||
position:static;
|
||||
margin:0px 5px;
|
||||
padding:15px 10px 20px 10px;
|
||||
|
@ -666,9 +832,43 @@ li{
|
|||
.preview{
|
||||
display:none;
|
||||
}
|
||||
.preview{
|
||||
width:auto;
|
||||
border:0px;
|
||||
padding:0px;
|
||||
}
|
||||
.previewrow{
|
||||
float:none;
|
||||
padding-left:0px;
|
||||
margin:auto;
|
||||
}
|
||||
.press-volunteer>div{
|
||||
width:200px;
|
||||
height:auto;
|
||||
}
|
||||
.press-volunteer>div>img{
|
||||
float:none;
|
||||
margin-right:0px;
|
||||
margin-bottom:20px;
|
||||
}
|
||||
.press-faq>div{
|
||||
width:auto;
|
||||
display:block;
|
||||
margin-right:0px;
|
||||
}
|
||||
.press-news>div{
|
||||
width:auto;
|
||||
height:auto;
|
||||
}
|
||||
.press-news>div>a>img{
|
||||
float:none;
|
||||
margin-right:0px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.conferencebanner{
|
||||
position:static;
|
||||
display:inline-block;
|
||||
margin:0px 0px 10px -5px;
|
||||
position:static;
|
||||
display:block;
|
||||
margin:0px 0px 10px -5px;
|
||||
text-align:center;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue