-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroadmap.css
More file actions
124 lines (116 loc) · 2.51 KB
/
Copy pathroadmap.css
File metadata and controls
124 lines (116 loc) · 2.51 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
* {
box-sizing: border-box;
}
body {
background-image: linear-gradient(to bottom, #222, #444);
color: #bbb;
padding: 1rem;
font-family: "Playfair Display", serif;
}
h1 {
text-align: center;
font-family: "Raleway", sans-serif;
}
.timeline {
position: relative;
padding: 1rem;
margin: 0 auto;
max-width: 1300px;
}
.timeline:before {
content: "";
position: absolute;
height: 100%;
border: 1px solid hotpink;
right: 40px;
top: 0;
}
.timeline:after {
content: "";
display: table;
clear: both;
}
@media screen and (min-width: 700px) {
.timeline {
padding: 2rem;
}
.timeline:before {
left: calc(50% - 1px);
right: auto;
}
}
.timeline__item {
padding: 1rem;
border: 2px solid hotpink;
border-image: linear-gradient(to right, skyblue 0%, hotpink 100%);
border-image-slice: 1;
position: relative;
margin: 1rem 3rem 1rem 1rem;
clear: both;
}
.timeline__item:after, .timeline__item:before {
content: "";
position: absolute;
}
.timeline__item:before {
right: -10px;
top: calc(50% - 5px);
border-style: solid;
border-color: hotpink hotpink transparent transparent;
border-width: 10px;
transform: rotate(45deg);
}
@media screen and (min-width: 700px) {
.timeline__item {
width: 44%;
margin: 1rem;
}
.timeline__item:nth-of-type(2n) {
float: right;
margin: 1rem;
border-image: linear-gradient(to right, hotpink 0%, skyblue 100%);
border-image-slice: 1;
}
.timeline__item:nth-of-type(2n):before {
right: auto;
left: -10px;
border-color: transparent transparent hotpink hotpink;
}
}
.timeline__item--year {
text-align: center;
max-width: 150px;
margin: 0 48px 0 auto;
font-size: 1.8rem;
background-color: #333;
line-height: 1;
border-image: none;
padding: 0.5rem 1rem 1rem;
}
.timeline__item--year:before {
display: none;
}
@media screen and (min-width: 700px) {
.timeline__item--year {
text-align: center;
margin: 0 auto;
}
.timeline__item--year:nth-of-type(2n) {
float: none;
margin: 0 auto;
border-image: none;
}
.timeline__item--year:nth-of-type(2n):before {
display: none;
}
}
.timeline__title {
margin: 0;
font-family: "Raleway", sans-serif;
font-size: 1.5em;
}
.timeline__blurb {
line-height: 1.5;
font-size: 1rem;
margin: 0.5rem 0 0;
}