-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (60 loc) · 1.33 KB
/
style.css
File metadata and controls
72 lines (60 loc) · 1.33 KB
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
:root {
--background-color: #FFF;
--foreground-color: #FFF;
--button--background-color: #0056b3;
--button--background-hover-color: #014899;
--button--foreground-color: #FFF;
--button_withValue--background-color: #008866;
--button_withValue--background-hover-color: #005944;
--button_withValue--foreground-color: #FFF;
}
html {
font-family: sans-serif;
font-size: 16px;
}
h1 {
font-size: 1.2em
}
h2 {
font-size: 1em
}
h1, h2 {
margin: .3em 0;
}
p {
margin: .3em 0;
}
label, input {
margin-bottom: .5em;
}
label {
margin-right: 1em;
}
button {
display: inline-block;
padding: .5em;
font-size: .9em;
text-align: center;
text-decoration: none;
border-radius: 5px;
color: var(--button--foreground-color);
background-color: var(--button--background-color);
cursor: pointer;
margin-bottom: .5em;
margin-right: .5em;
}
button.with-value {
color: var(--button_withValue--foreground-color);
background-color: var(--button_withValue--background-color);
}
button:hover {
transition: background-color 0.3s;
background-color: var(--button--background-hover-color);
}
button.with-value:hover {
transition: background-color 0.3s;
background-color: var(--button_withValue--background-hover-color);
}
.groupement {
display: block;
}