-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (38 loc) · 739 Bytes
/
style.css
File metadata and controls
44 lines (38 loc) · 739 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
* {
background-color: black;
color: greenyellow;
}
h1 {
margin: 50px;
padding: 50px 50px 50px 50px;
text-align: center;
font-size: 50px;
border-radius: 40px;
/* background-color: seashell; */
border: 5px solid greenyellow;
}
button {
padding: 20px;
border-radius: 50px;
margin-left: 300px;
font-size: 50px;
display: flex;
background-color: black;
color: greenyellow;
border: 2px solid greenyellow;
}
button:active {
background-color: yellowgreen;
color: black;
}
/* h1:hover {
background-color: yellowgreen;
color: black ;
}
h1:active {
background-color: yellowgreen;
} */
button:hover {
background-color: yellowgreen;
color: black;
}