forked from erming/tabcomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (85 loc) · 1.27 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
@import url(http://fonts.googleapis.com/css?family=Lato:700);
* {
box-sizing: border-box;
}
html,
body {
background: #fff;
font: 16px sans-serif;
margin: 0;
}
p {
line-height: 1.625;
margin: 0 0 10px;
}
kbd {
background: #34495e;
border-radius: 4px;
color: #ffffff;
font-size: 13px;
padding: 2px 6px;
}
.row {
margin-bottom: 20px;
}
.hint {
color: #bbb;
}
#wrap {
margin: 60px auto;
max-width: 400px;
}
#header input {
border: 0;
font: bold 57px Lato, sans-serif;
margin: 0;
outline: 0;
width: 100%;
}
#demo {
position: relative;
}
#demo h3 {
color: #bdc3c7;
font-size: 18px;
font-weight: normal;
margin: 0 0 10px;
text-transform: uppercase;
}
#demo textarea,
#demo input {
border: 2px solid #bdc3c7;
border-radius: 6px;
font: 20px Helvetica, Arial, sans-serif;
line-height: 1.467;
outline: none;
padding: 8px 12px;
resize: none;
transition: all .25s;
width: 100%;
}
#demo textarea:focus,
#demo input:focus {
border-color: #1abc9c;
}
#demo .section {
margin-bottom: 30px;
}
#demo #matches {
color: #bdc3c7;
font-size: 12px;
font-family: monospace;
margin-top: 17px;
position: absolute;
right: 33px;
text-transform: uppercase;
transition: all .3s;
}
@media (max-width: 768px) {
#wrap {
margin: 30px auto;
}
#header input {
font-size: 44px;
}
}