Projet

Général

Profil

0001-nanterre-modify-font-size-links-and-lists-in-frontof.patch

Thomas Noël, 08 septembre 2017 15:09

Télécharger (1,45 ko)

Voir les différences:

Subject: [PATCH] nanterre: modify font-size, links and lists in frontoffice
 CSS (#18518)

 static/nanterre/_custom.scss | 24 ++++++++++++++++++++++++
 static/nanterre/_vars.scss   |  2 +-
 2 files changed, 25 insertions(+), 1 deletion(-)
static/nanterre/_custom.scss
36 36
	}
37 37
}
38 38

  
39
div#main-content {
40
	a {
41
		color: #000;
42
		text-decoration: underline;
43
	}
44
	a:hover, a:focus {
45
		color: #000;
46
		text-decoration: none;
47
	}
48
	div#columns {
49
		ul li a {
50
			color: #000;
51
			border-bottom: 1px solid #999;
52
			padding-bottom: 2px;
53
			text-decoration: none;
54
		}
55
		ul li a:hover, ul li a:focus {
56
			color: #000;
57
			border-bottom: none;
58
			text-decoration: none;
59
		}
60
	}
61
}
62

  
39 63
input[type=submit], button {
40 64
	border-radius: 2em;
41 65
}
static/nanterre/_vars.scss
3 3
$width: 960px;
4 4
$font-color: #282828;
5 5
$font-family: Asap, sans-serif;
6
$font-size: 12px;
6
$font-size: 14px;
7 7
$nav-background: white;
8 8
$nav-submenu-background: #222;
9 9
$nav-submenu-color: white;
10
-