-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
88 lines (74 loc) · 1.41 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
body {font-family: Arial;}
table {
display: table;
}
.intro-header {
border-radius: 10px;
background-color: #6d60a9;
box-shadow: 5px 5px 15px -5px #444;
color: #fff;
}
.footer {
width: 100%;
background-color: #4a3c89;
text-align: center;
color: white;
padding: 10px 20px;
border-radius: 10px;
box-shadow: 5px 5px 15px -5px #444;
}
.footer a {
color: #c8c3dc;
}
.footer a:hover {
color: #aea7cc;
}
/* Help panel */
.help-panel {
margin-top: 10px;
color: #333;
display: inline-block;
}
.help-panel > * {
display: inline-block;
padding: 1px 10px;
position: relative;
float: left;
color: #333;
font-size: 12px;
font-weight: 400;
line-height: 1.5;
text-align: center;
white-space: nowrap;
vertical-align: middle;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 3px;
}
.help-panel > a {
touch-action: manipulation;
cursor: pointer;
user-select: none;
}
.help-panel > a:hover {
background-color: #e6e6e6;
border-color: #adadad;
text-decoration: none;
color: #333;
}
.help-panel > *:first-child:not(:last-child) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.help-panel > *:not(:first-child):not(:last-child) {
border-radius: 0;
}
.help-panel *+* {
margin-left: -1px;
}
.help-panel > .title {
color: #888;
}
.help-panel > .title > i.fa {
font-size: 13px;
}