-
Notifications
You must be signed in to change notification settings - Fork 286
/
base.css
105 lines (95 loc) · 1.86 KB
/
base.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
body {
font-size: 14px;
color: #555;
font-family: Roboto, sans-serif;
margin: 0;
}
h2 a {
margin-left: 10px;
color: #00bcd4;
}
a {
text-decoration: none;
cursor: pointer;
color: white;
font-size: 1.2em;
}
a:hover {
-webkit-transform: scale(1.3, 1.3);
-moz-transform: scale(1.3, 1.3);
-ms-transform: scale(1.3, 1.3);
-o-transform: scale(1.3, 1.3);
transform: scale(1.3, 1.3);
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-ms-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
h2 {
margin-bottom: 0;
}
img {
width: 13px;
}
header {
background-color: #00bcd4;
transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
box-sizing: border-box;
-webkit-tap-highlight-color: rgba(0,0,0,0);
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
border-radius: 0px;
z-index: 5;
width: 100%;
display: -webkit-box;
display: flex;
min-height: 44px;
padding-left: 24px;
padding-right: 24px;
}
button {
border: 10px;
box-sizing: border-box;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-appearance: button;
cursor: pointer;
background: #006774;
color: white;
transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
-webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
transform: translate3d(0px, 0px, 0px);
text-decoration: none;
overflow: hidden;
margin-left: 10px;
padding: 4px 7px;
border-radius: 2px;
}
input {
background: white;
border: 1px solid #eee;
padding: 3px 5px;
width: 100px;
border-radius: 2px;
}
.message button {
position: relative;
height: 23px;
padding: 0px;
position: absolute;
bottom: 14px;
left: 14px;
outline: none;
width: 50px;
margin-top: 5px;
background: #00C853;
}
textarea {
font-family: Roboto, sans-serif;
width: 100%;
font-size: 14px;
height: 6.9em;
padding: 0.5em;
border: none;
resize: none;
outline: none;
}