-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (56 loc) · 1.14 KB
/
style.css
File metadata and controls
62 lines (56 loc) · 1.14 KB
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
57
58
59
60
61
62
body {
background: #ebe8e8;
}
#createElement {
background-color: #ece8e8;
}
.paraClass {
color: red;
font-size: 30px;
font-weight: bold;
font-style: italic;
text-shadow: 1px 2px 3px green;
background-color: #f1f1f1;
width: 250px;
padding: 10px;
border: 1px solid #d1d1d1;
box-shadow: 0px 3px 10px 0px gray;
cursor: pointer;
transition: .5s;
}
#clickStyle {
cursor: pointer;
}
.headingClass {
color: #00aeff;
font-size: 30px;
font-weight: bold;
font-style: italic;
text-shadow: 1px 2px 3px hsl(54, 82%, 49%);
background-color: #f1f1f1;
width: 360px;
padding: 10px;
border: 1px solid #d1d1d1;
box-shadow: 0px 3px 10px 0px gray;
cursor: pointer;
transition: .5s;
}
.myBtn {
background-color: #46b8db;
color: white;
padding: 5px 20px;
border: none;
margin: 10px;
box-shadow: 0px 4px 10px 0px gray;
cursor: pointer;
}
.playAnim {
box-shadow: 0px 10px 15px 0px #d82972;
background: #217bcf;
border-radius: 5px;
color: lightgreen;
padding: 8px 23px;
margin: 7px;
transition: .5s;
transform: scale(1, 1)
}