forked from HamidByte/Wiki-Table-Exporter-Chrome-Extension
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
77 lines (68 loc) · 1.4 KB
/
styles.css
File metadata and controls
77 lines (68 loc) · 1.4 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
body {
margin: 0;
padding: 1rem;
width: 200px;
font-family: Inter, -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
}
.border {
border: 2px solid;
border-image: linear-gradient(45deg, turquoise, greenyellow) 1;
}
.content {
text-align: center;
}
.tables-list {
text-align: center;
}
h1 {
font-size: 20px;
font-weight: 600;
}
p {
font-size: 12px;
}
button {
margin-bottom: 5px;
appearance: none;
backface-visibility: hidden;
background-color: #27ae60;
border-radius: 4px;
border-style: none;
box-shadow: rgba(39, 174, 96, 0.15) 0 4px 9px;
box-sizing: border-box;
color: #fff;
cursor: pointer;
display: inline-block;
font-size: 14px;
font-weight: 500;
letter-spacing: normal;
line-height: 1.5;
outline: none;
overflow: hidden;
padding: 6px 12px;
position: relative;
text-align: center;
text-decoration: none;
transform: translate3d(0, 0, 0);
transition: all 0.3s;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
vertical-align: top;
white-space: nowrap;
}
button:hover {
background-color: #1e8449;
opacity: 1;
transform: translateY(0);
transition-duration: 0.35s;
box-shadow: rgba(39, 174, 96, 0.2) 0 6px 12px;
}
button:active {
transform: translateY(2px);
transition-duration: 0.35s;
}
button.with-urls {
background-color: #1e6e84;
box-shadow: rgba(38, 144, 173, 0.2) 0 6px 12px;
}