-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstyle.css
95 lines (76 loc) · 2.21 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
.jsr {font: italic small-caps 1em Arial, sans-serif;}
h2 {color:blue; margin-bottom:0;}
h3 {color:green;margin-bottom:0;}
h3+p,h3+p+p {margin-top: 3px;}
table {
width:100%;
border-top:1px solid black;
border-bottom:1px solid black;
border-collapse:collapse;
}
table.links td {
width:15%;
}
td,th{
padding:2px;
vertical-align:top;
border-bottom:thin solid lightgrey;
}
tr.groupe td {
border-top:thin solid black;
background-color:#F1F1CC;
}
th {background-color:#FEFEFE;}
td:nth-child(1),th:nth-child(1){width:20%;}
td:nth-child(2),th:nth-child(2){width:15%;}
td:nth-child(3),th:nth-child(3){width:40%;}
td:nth-child(4),th:nth-child(4){width:25%;}
.description {}
.pattern {font: 80% "Courier", sans-serif;}
.example-en,.example-fr{font: 80% "Courier", sans-serif; white-space:pre;}
.realisation {font: normal normal normal 1em Arial, sans-serif;}
footer {
border-top:thin solid lightgrey;
padding-top:5px;
}
#pronomsSect2 .pattern {font: 70% "Courier", sans-serif;}
#pronomsSect2 td {border: 1px solid #999;}
#pronomsSect2 tr.last td {border-bottom: 2px solid black;}
#pronomsSect2 th {font-style: italic;font-weight: normal;}
#langSelect{cursor:pointer; color: green; position:fixed; top:5px; right:10px;}
/* Adapted from https://www.w3schools.com/howto/howto_css_dropdown_navbar.asp */
/* The dropdown container */
.dropdown {
position:fixed; top:5px; right:250px;
color: green;
background-color: inherit;
font-family: inherit; /* Important for vertical align on mobile phones */
margin: 0; /* Important for vertical align on mobile phones */
}
/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
background-color: #ddd;
}
/* Dropdown content (hidden by default) */
.dropdown-content {
display: none;
position: absolute;
background-color: white;
}
/* Links inside the dropdown */
.dropdown-content a {
float: none;
color: blue;
text-decoration: none;
min-width:250px;
display: block;
text-align: left;
}
/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
background-color: #ddd;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}