-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.css
More file actions
46 lines (42 loc) · 751 Bytes
/
default.css
File metadata and controls
46 lines (42 loc) · 751 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
* {padding: 0;
margin: 0;
}
canvas { background: #fff;
color: #000;
display: block;
margin: 0 auto;
}
h1{
padding: 5%;
margin: 0;
color: #000;
text-align: center;
font-weight: lighter;
font-size: 3em;
font-family: 'Roboto', sans-serif;
}
p{
color: #000;
text-align: center;
font-weight: lighter;
font-size: 1em;
font-family: 'Roboto', sans-serif;
padding: 10px;
}
#start{
/*background colour*/
background-color: #0a0;
/*text colour*/
color: #fff;
/*border*/
border: 3px solid black;
/*Spacing*/
padding: 2px;
/*List sizing*/
min-width: 200px;
max-width: 60%;
/*Keep list central*/
margin: auto;
/*Curvy corners*/
border-radius: 20px;
}