-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
39 lines (38 loc) · 768 Bytes
/
style.css
File metadata and controls
39 lines (38 loc) · 768 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
.container{
width:666px;
border:3px solid red;
border-radius:8px;
background-color: rgb(243, 247, 28);
font-family: fantasy;
padding:34px;
margin: 44px auto;
}
h1{
text-align: center;
}
.btn{
background-color: rgb(15, 221, 159);
color:rgb(247, 19, 19);
border-radius: 4px;
padding:6px;
cursor: pointer;
text-decoration: none;
border:none;
font-family:fantasy;
}
a:hover{
background-color: rgb(241, 83, 207);
color: black;
}
a:active{
background-color: rgb(66, 66, 240);
color: aliceblue;
}
#click-me:hover{
background-color: rgb(75, 236, 60);
color: black;
}
#click-me:active{
background-color: rgb(179, 10, 179);
color: aliceblue;
}