-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
75 lines (63 loc) · 1.06 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
#warning{
color: red;
text-transform: uppercase;
}
table, td, th{
border: 1px solid black
}
table{
margin-left:auto; margin-right:auto;
}
p{
margin-left:2%;
}
code {
font-size: 1em;
}
h1 a, h1 a:visited { color: #484848; }
h1 a:hover { text-decoration: none; }
h1.builds-title {
font-size: 2.5em;
line-height: 1.2;
margin-bottom: 1em;
}
h1.methode {
font-size: 4em;
text-align: center;
}
h2 { font-size: 2.5em; }
/* Choice grid */
.grid {
overflow: hidden; /* block formatting context */
}
.grid > * {
margin-left: -20px;
}
.grid > * > * {
float: left;
padding-left: 20px;
box-sizing: border-box;
}
.grid-3 > * {
width: 33.33333%;
}
@media screen and (max-width: 768px) {
.grid > * > * { width: 100%; }
}
.methods {
margin: 2em 10%;
}
.methods > h2 {
margin-bottom: .75em;
}
.method-button {
text-align: center;
background-clip: padding-box;
background-image: linear-gradient(#43a6e2, #277ac1);
border-radius: .25em;
padding: .25em .5em;
}
.method-button a {
text-decoration: none;
color: #fff;
}