-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (42 loc) · 914 Bytes
/
style.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
/* Styles go here */
body{
font-family: "Eau Naturelle", "Helvetica", "Arial", "Lucida Grande", "Gill Sans", "Verdana", sans-serif;
font-weight:100;
color: #444;
background-color: #ddd;
}
#canvas{
border-bottom: 1px solid rgba(0,0,0,0.3);
background-color: #FFF;
box-shadow: 0 9px 20px -5px rgba(0,0,0,0.8);
}
#d{
text-align: center;
}
h1{
color: #444;
font-family: "Eau Naturelle", "Helvetica", "Arial", "Lucida Grande", "Gill Sans", "Verdana", sans-serif;
font-weight: 500;
}
h2{
color: #444;
font-family: "Eau Naturelle", "Helvetica", "Arial", "Lucida Grande", "Gill Sans", "Verdana", sans-serif;
font-weight: 400;
}
a{
color: #4a9;
text-decoration:none;
font-style:italic;
font-weight: 800;
}
* {
box-sizing: border-box;
}
.row {
display: flex;
}
/* Create two equal columns that sits next to each other */
.column {
flex: 50%;
padding: 10px;
}