styled tittles with button in home page
This commit is contained in:
parent
bfe52af939
commit
8c7ed17aa0
579
adminstyles.css
579
adminstyles.css
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -73,6 +73,34 @@
|
||||||
border-bottom: 0.6rem solid $color__black;
|
border-bottom: 0.6rem solid $color__black;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/* used in
|
||||||
|
* ./template-parts/section-agenda.php
|
||||||
|
* ./template-parts/section-last-convos.php
|
||||||
|
* */
|
||||||
|
section.agenda,
|
||||||
|
section.last-convos {
|
||||||
|
h2 a::after {
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 0.4em;
|
||||||
|
color: white;
|
||||||
|
background-color: black;
|
||||||
|
padding: 0.4em;
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
[lang="ca"] section.agenda h2 a::after {
|
||||||
|
content: "Verure totes les activitas";
|
||||||
|
}
|
||||||
|
[lang*="es"] section.agenda h2 a::after {
|
||||||
|
content: "Ver todas las actividades";
|
||||||
|
}
|
||||||
|
[lang="ca"] section.last-convos h2 a::after {
|
||||||
|
content: "Verure totes les convocatories";
|
||||||
|
}
|
||||||
|
[lang*="es"] section.last-convos h2 a::after {
|
||||||
|
content: "Ver todas las convocatorias";
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@media screen and (min-width: 48em) {
|
@media screen and (min-width: 48em) {
|
||||||
h1,.h1 {
|
h1,.h1 {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
<section id="agenda" class="agenda ">
|
<section id="agenda" class="agenda ">
|
||||||
<header>
|
<header>
|
||||||
<h2> <?php echo esc_html__('Agenda', 'xarxaprod'); ?></h2>
|
<h2><a href="<?php echo site_url() . '/agenda' ;?>"><?php echo esc_html__('Agenda', 'xarxaprod'); ?></a></h2>
|
||||||
</header>
|
</header>
|
||||||
<main class="xarxaprod-agenda">
|
<main class="xarxaprod-agenda">
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
//plugin is activated do
|
//plugin is activated do
|
||||||
?>
|
?>
|
||||||
<header>
|
<header>
|
||||||
<h2> <?php echo esc_html__('Últimes convocatòries', 'xarxaprod'); ?></h2>
|
<h2> <a href="<?php echo site_url() . '/convocatories' ;?>"><?php echo esc_html__('Últimes convocatòries', 'xarxaprod'); ?></a></h2>
|
||||||
</header>
|
</header>
|
||||||
<main class="xarxaprod-last-convos xarxaprod-ultimes-convocatories">
|
<main class="xarxaprod-last-convos xarxaprod-ultimes-convocatories">
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue