forked from fliteska/timeline-vuejs-d3js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
67 lines (62 loc) · 1.07 KB
/
styles.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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: url("https://subtlepatterns.com/patterns/dark_wall.png");
width: 100%;
height: 100%;
color: white;
font-family: Arial, Helvetica, sans-serif;
}
.container {
width: 960px;
margin: 10px auto;
}
h1, h3 {
font-family: 'VT323', monospace;
text-transform: uppercase;
color: rgba(70, 130, 180, 1);
text-align: center;
}
h1 {
line-height: 50px;
font-size: 30px;
height: 50px;
}
.center {
margin: 0 auto;
}
.timeline-entry {
margin: 0 auto;
padding: 10px;
width: 960px;
text-align: center;
border-bottom: 1px dotted white;
}
.timeline-entry:last-child {
border-bottom: none;
}
.timeline-entry small {
color: #CCC;
}
input, button, textarea {
display: block;
width: 100%;
margin: 10px 0;
border-radius: 10px;
}
input, button {
line-height: 30px;
border: none;
padding: 0 10px;
}
textarea {
height: 100px;
padding: 10px;
}
button {
background: rgba(70, 130, 180, 1);
color: white;
}