-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
78 lines (78 loc) · 1.07 KB
/
main.css
File metadata and controls
78 lines (78 loc) · 1.07 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
73
74
75
76
77
78
html,
body {
margin: 0;
padding: 0;
background-color: #ffffff;
color: #333333;
font-family: 'Ubuntu Mono', monospace;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
padding: 0;
font-size: 100%;
}
a {
color: #0077cf;
text-decoration: none;
}
.title {
height: 480px;
text-align: center;
font-size: 300%;
}
.name {
display: block;
color: #0077cf;
}
.name:hover {
text-decoration: underline;
}
.tagline {
color: #333333;
font-size: 50%;
}
.description {
display: none;
}
.installation {
margin: 128px;
text-align: center;
}
.installation a {
padding: 32px 64px;
border: 4px solid #0077cf;
font-weight: bold;
font-size: 150%;
}
.installation a:hover {
background-color: #0077cf;
color: #ffffff;
}
.source-code,
.demo,
.npm,
.b-html-family {
margin: 64px;
text-align: center;
}
.source-code a,
.demo a,
.npm a,
.b-html-family a {
padding: 16px 32px;
border: 2px solid #0077cf;
font-weight: bold;
font-size: 100%;
}
.source-code a:hover,
.demo a:hover,
.npm a:hover,
.b-html-family a:hover {
background-color: #0077cf;
color: #ffffff;
}