-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (88 loc) · 1.63 KB
/
style.css
File metadata and controls
95 lines (88 loc) · 1.63 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
body
{
font-family: 'Ubuntu', sans-serif;
}
table
{
border-collapse: collapse;
background-image: url("./background.png");
background-position: top 64px left 64px;
background-repeat: no-repeat;
float: left;
}
th, td
{
border: 1px solid black;
padding: 0px;
width: 64px;
height: 65px;
font-size: 30pt;
background-size: 64px;
background-repeat: no-repeat;
}
img
{
height: 63px;
width: 63px;
}
.container
{
display: table;
margin: 0 auto;
}
.emojione {
display: inline-block;
font-size: inherit;
height: 3ex;
line-height: normal;
margin: 0px;
min-height: 20px;
min-width: 20px;
vertical-align: middle;
width: 3.1ex;
}
img.emojione {
width: auto;
}
button.blue, .size{
position: relative;
vertical-align: top;
width: auto;
height: auto;
padding: 10px;
font-size: 22px;
color: white;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
background: #2980b9;
border: 0;
border-bottom: 2px solid #2475ab;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
cursor: pointer;
-webkit-box-shadow: inset 0 -2px #2475ab;
box-shadow: inset 0 -2px #2475ab;
}
button.green {
position: relative;
vertical-align: top;
width: auto;
height: auto;
padding: 10px;
font-size: 22px;
color: white;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
background: #27ae60;
border: 0;
border-bottom: 2px solid #219d55;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
cursor: pointer;
-webkit-box-shadow: inset 0 -2px #219d55;
box-shadow: inset 0 -2px #219d55;
}
button:active
{
top: 1px;
}