-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
32 lines (32 loc) · 656 Bytes
/
style.css
File metadata and controls
32 lines (32 loc) · 656 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
body {
background-color: #252527;
}
p {
text-align: center;
color: rgb(206, 199, 199);
font-size: 50px;
font-family: sans-serif;
-webkit-box-reflect: below 12px
linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
position: relative;
top: 10pc;
}
button {
width: 200px;
height: 50px;
border-radius: 15px;
position: relative;
top: 6pc;
left: 25pc;
border: none;
background-color: cyan;
font-size: 25px;
font-family: sans-serif;
font-weight: bold;
color: yellow;
box-shadow: 0px 0px 100px lime;
transition: 1s;
}
button:hover {
box-shadow: 0px 0px 100px skyblue;
}