-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
108 lines (93 loc) · 1.21 KB
/
index.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
106
107
108
* {
box-sizing: border-box;
}
@font-face {
font-family: 'Bree';
src: url('BreeSerif-Regular.otf');
}
body {
margin: 0;
padding: 0;
font-family: 'Bree';
}
h1, h2 {
font-weight: normal;
}
h1 {
margin: 0;
padding: 0;
font-size: 4em;
font-weight: normal;
}
hr {
border: 3px solid white;
}
.wrapper {
display: flex;
flex-direction: column;
}
.left {
width: 100%;
background-color: maroon;
}
.right {
width: 100%;
}
.left-wrapper {
margin: 40px;
color: white;
}
.editions a {
color: white;
}
.right-wrapper {
margin: 60px 40px;
color: black;
font-size: 1.2em;
}
.talk {
color: black;
}
.speaker {
color: gray;
}
.align-right {
text-align: right;
margin-bottom: 20px;
}
.block {
margin: 10px 0;
}
@media (min-width: 800px) {
.wrapper {
display: flex;
flex-direction: row;
}
.left-wrapper {
margin: 120px;
color: white;
}
.right-wrapper {
margin: 60px 80px;
color: black;
font-size: 1.2em;
}
h1 {
font-size: 4em;
}
.left {
width: 60%;
height: 100vh;
background-color: maroon;
}
.right {
width: 50%;
height: 100vh;
overflow: scroll;
}
}
@media (min-width: 1100px) {
h1 {
font-size: 6em;
}
}