-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (56 loc) · 954 Bytes
/
style.css
File metadata and controls
56 lines (56 loc) · 954 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
49
50
51
52
53
54
55
56
body {
background-image: repeating-radial-gradient(#996633, #33cccc);
}
h1 {
font-size: 50px;
color: #ffffff;
text-align: center;
font-family: cursive;
text-decoration: underline;
}
div {
text-align: center;
}
.canvas {
height: 200px;
width: 300px;
border: 5px solid #ffff15;
padding: 20;
margin: 20px;
}
p {
text-align: center;
font-family: cursive;
color: #ffffff;
}
.file {
margin: 10px;
padding: 5px;
}
.button {
cursor: pointer;
border-radius: 12px;
height: 50px;
width: 80px;
background-color: #ffffff;
font-family: cursive;
font-size: 15px;
transition-duration: 0.5s;
}
#hide:hover {
background-image: linear-gradient(cyan, green);
color: #000000;
}
#rst:hover {
background-image: linear-gradient(orange, yellow);
color: #0000a5;
}
#dwnld:hover {
background-image: linear-gradient(black, yellow);
color: #ffffff;
}
h2 {
text-align: center;
color: #ffffff;
font-family: cursive;
}