-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (71 loc) · 1.28 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
body {
background: #e7eaf0;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
font-size: 16px;
line-height: 1.5;
}
* {
box-sizing: border-box;
}
p {
margin-top: 0;
margin-bottom: .5em;
}
a {
color: inherit;
text-decoration: none;
}
p:last-child {
margin-bottom: 0;
}
.site-header {
background: #242a35;
padding: 40px 20px;
text-align: center;
}
.site-header img {
width: 150px;
}
.site-description {
font-size: 18px;
text-align: center;
}
.site {
padding: 40px 20px;
max-width: 740px;
margin: 0 auto;
}
.documentations {
margin: 0 -20px 80px;
}
.documentations::after {
content: '';
display: table;
clear: both;
}
.documentation {
width: 100%;
padding: 20px;
}
.documentation-wrapper {
display: block;
padding: 20px;
border-radius: 10px;
background: #fff;
border: 1px solid #242a35;
transition: .3s;
}
.documentation-wrapper:hover .documentation-title {
color: #017eff;
}
.documentation-wrapper:hover {
box-shadow: 2px 2px 0 0 rgba(36, 42, 53, 1);
}
.documentation-title {
font-size: 24px;
font-weight: 600;
transition: .3s;
}
.documentation-description {
color: #404040;
}