-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (104 loc) · 1.76 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
96
97
98
99
100
101
102
103
104
105
106
107
body {
margin: 0 auto;
font: 15px/19px Arial;
background-color: #f5f5f5;
}
h3 {
padding: 0;
margin: 0;
border: none;
}
header {
height: 60px;
display: flex;
color: white;
text-align: center;
align-items: center;
justify-content: center;
background-color: #262626;
}
header .container {
display: flex;
align-items: center;
justify-content: center;
}
header img {
float: left;
}
header h3 {
float: left;
padding: 5px 0;
font-size: 14px;
margin-left: 15px;
}
.container {
width: 400px;
margin: 0 auto;
height: inherit;
}
.links {
margin-bottom: 0px;
padding-bottom: 0px;
background-color: #f5f5f5;
font-family: Arial, Helvetica, sans-serif;
}
.links h3 {
padding: 5px 0;
font-size: 20px;
color: #262626;
padding-bottom: 0;
text-align: center;
margin-bottom: 10px;
}
.links h3:first-child {
padding-top: 10px;
}
.links p:first-child {
margin-top: 0;
padding-top: 15px;
}
.links p:last-child {
margin-bottom: 0;
padding-bottom: 15px;
}
.links ul {
margin-top: 0;
padding-top: 0;
list-style: none;
padding: 10px 5px;
margin-left: 15px;
border-bottom: 1px solid #dddddd;
}
.links ul:last-child {
margin-bottom: 0;
border-bottom: none;
}
.links ul li {
padding: 5px 0;
}
.links ul li a {
color: #3a80ba;
font-weight: bold;
text-decoration: none;
}
.links ul li a:hover {
color: #003142;
}
.avatar {
margin-top: 10px;
vertical-align: middle;
width: 80px;
height: 80px;
border-radius: 50%;
float:top;
}
.inspector {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
pre {
width: 400px;
margin: 10px auto;
}