-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.css
More file actions
48 lines (48 loc) · 943 Bytes
/
Copy pathsample.css
File metadata and controls
48 lines (48 loc) · 943 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
*{
text-align: center;
}
body{
background-color: black;
}
.wd{
color: rgb(255, 255, 255);
box-shadow: 5px 5px 15px rgb(192, 140, 255);
background-color: rgb(45, 8, 56);
padding-top: 15px;
padding-bottom: 15px;
border-radius: 25px;
font-family:monospace;
font-size: 35px;
}
.js{
color: yellow;
}
button{
padding: 15px;
font-family: cursive;
font-size: 20px;
border-radius: 25px;
margin-left: 25px;
margin-right: 25px;
border-style: none;
background-color: black;
color: white;
box-shadow: 5px 5px 15px ;
}
button:hover{
padding: 15px;
font-family: cursive;
font-size: 20px;
border-radius: 25px;
margin-left: 25px;
margin-right: 25px;
border-style: none;
background-color: rgb(0, 255, 38);
color: rgb(0, 0, 0);
}
.re{
color: rgb(255, 173, 173);
}
.bl{
color: rgb(89, 89, 255);
}