-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
28 lines (27 loc) · 708 Bytes
/
style.css
File metadata and controls
28 lines (27 loc) · 708 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
#canvas{
background-color: red;
color: white;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 25px;
width: 650px;
height: 500px;
margin: 50px auto 50px;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50px;
}
#button{
text-align: center;
width: 200px;
height: 50px;
margin: 50px auto 50px;
color: white;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
background: black;
border-radius: 5px;
border-style: none;
display: block;
cursor: pointer;
}