-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (42 loc) · 789 Bytes
/
style.css
File metadata and controls
48 lines (42 loc) · 789 Bytes
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
/* CSS files add styling rules to your content */
body {
font-family: "Benton Sans", "Helvetica Neue", helvetica, arial, sans-serif;
margin: 2em;
background-color: gainsboro;
}
#demo-h1 {
font-style: italic;
color: #373fff;
padding:0px;
margin:5px;
font-size:26px;
font-weight: bold;
}
canvas{
padding:2px;
}
div{
margin-bottom:3px;
}
#demo{
background-color: white;
border: 2px solid black;
border-radius: 5px;
box-shadow: 3px 3px 1px rgba(0,0,0,0.2);
padding:20px;
width:600px;
}
#readme{
margin-top: 50px;
background-color: white;
border: 2px solid black;
border-radius: 5px;
box-shadow: 3px 3px 1px rgba(0,0,0,0.2);
padding:40px;
}
pre{
background-color: gainsboro;
padding: 10px;
border-radius: 5px;
overflow: scroll;
}