-
Notifications
You must be signed in to change notification settings - Fork 12
/
style.css
109 lines (92 loc) · 1.68 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
108
109
@font-face{
font-family: Vestula;
src: url("../fonts/vestula-regular.woff2") format("woff2"),url("../fonts/vestula-regular.woff") format("woff");
font-weight:normal;
font-style:normal;
}
@font-face{
font-family: Vestula;
src: url("../fonts/vestula-semibold.woff2") format("woff2"),url("../fonts/vestula-semibold.woff") format("woff");
font-weight:bold;
font-style:normal;
}
html {
width: auto;
height: auto;
font-family: Vestula, sans-serif;
}
body {
width: 350px;
height: auto;
background-color: #fff;
}
div#branding {
font-size: .8em;
display: block;
max-width: 100%;
height: 85px;
max-height: 100%;
margin: 0 0 15px 0;
}
div#logo {
display: block;
float: left;
height: 100%;
margin: 0 20px;
}
div#instructions {
padding: 0 20px;
}
img {
max-width: 100%;
max-height: 100%;
}
#container {
font-size: 14px;
visibility: hidden;
overflow: hidden;
box-sizing: border-box;
border: 1px solid #cacaca;
}
#container.initialized {
visibility: visible;
}
#container .dialogInput {
font-size: 14px;
width: 95%;
}
.header {
border-bottom: 1px solid #cacaca;
background-color: #f4f4f4;
}
#searchContainer {
padding: 20px;
}
#searchInput {
font-style: italic;
}
input[type=text] {
padding: 5px;
border: 2px solid #ccc;
-webkit-border-radius: 5px;
border-radius: 5px;
}
input[type=text]:focus {
border-color: #333;
}
input[type=submit] {
padding: 5px 15px;
cursor: pointer;
border: 0 none;
-webkit-border-radius: 5px;
border-radius: 5px;
background: #ccc;
}
h1,
h2,
h3,
h4,
h5,
p {
font-family: Vestula, arial, sans-serif;
}