diff options
Diffstat (limited to '')
| -rw-r--r-- | assets/css/_allconferences.less | 25 | ||||
| -rw-r--r-- | assets/css/_closed.less | 1 | ||||
| -rw-r--r-- | assets/css/_structure.less | 1 | 
3 files changed, 27 insertions, 0 deletions
| diff --git a/assets/css/_allconferences.less b/assets/css/_allconferences.less new file mode 100644 index 0000000..d8a14aa --- /dev/null +++ b/assets/css/_allconferences.less @@ -0,0 +1,25 @@ +body.allconferences { +	text-align: center; + +	.conference { +		a { +			font-size: @jumbo-font-size; +			line-height: @jumbo-line-height; + +			@media (max-width: @screen-xs-min) { +				font-size: @jumbo-font-size-xs; +			} + +			display: block; +			text-align: center; + +			&:hover { +				text-decoration: none; +			} +		} + +		p { +			margin-top: @line-height-computed; +		} +	} +} diff --git a/assets/css/_closed.less b/assets/css/_closed.less index 8aeeb78..ff55b75 100644 --- a/assets/css/_closed.less +++ b/assets/css/_closed.less @@ -1,4 +1,5 @@  body.closed, +body.allclosed,  body.not-started {  	p {  		margin-top: 50px; diff --git a/assets/css/_structure.less b/assets/css/_structure.less index 2082e38..d6e4257 100644 --- a/assets/css/_structure.less +++ b/assets/css/_structure.less @@ -88,3 +88,4 @@ body {  @import "_closed.less";  @import "_embed.less";  @import "_feedback.less"; +@import "_allconferences.less"; | 
