forked from sararob/live-coding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
49 lines (42 loc) · 788 Bytes
/
main.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
@font-face {
font-family: 'Gotham Light';
src: url("/fonts/Gotham-Light.otf") format("opentype");
}
@font-face {
font-family: 'Gotham Bold';
src: url("/fonts/Gotham-Bold.otf") format("opentype");
}
body {
font-family: 'Gotham Light';
}
h1 {
font-weight: bold;
font-family: 'Gotham Bold';
font-size: ;
}
.msg-text {
border: 1px solid black;
padding: 4px;
border-radius: 5px;
width: 350px;
margin: 15px;
}
#login {
float: right;
}
#msgInput input textarea {
padding: 1em;
border: 1px solid #ccc;
height: 25px;
color: blue;
}
#tweet-submit {
padding: 0.5em 1em;
background-color: #50b1ff;
border: none;
-webkit-transition: background-color 300ms;
transition: background-color 300ms;
color: #FFF;
font-family: 'HelveticaNeue-Light';
font-weight: normal;
}