Projet

Général

Profil

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

Thomas Noël, 07 septembre 2017 16:45

Télécharger (1,42 ko)

Voir les différences:

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

 static/nanterre/_custom.scss | 22 ++++++++++++++++++++++
 static/nanterre/_vars.scss   |  2 +-
 2 files changed, 23 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
	ul li a {
49
		color: #000;
50
		border-bottom: 1px solid #999;
51
		padding-bottom: 2px;
52
		text-decoration: none;
53
	}
54
	ul li a:hover, ul li a:focus {
55
		color: #000;
56
		border-bottom: none;
57
		text-decoration: none;
58
	}
59
}
60

  
39 61
input[type=submit], button {
40 62
	border-radius: 2em;
41 63
}
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
-