-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (43 loc) · 851 Bytes
/
style.css
File metadata and controls
45 lines (43 loc) · 851 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
body{
background-color: #333;
align-items: center;
text-align: center;
color:aliceblue;
font-family: 'Spartan', sans-serif;
}
h1{
font-family: 'Spartan', sans-serif;
color: aliceblue;
margin-top: 200px;
}
#btn1
{
font-family: 'Spartan', sans-serif;
border: 2px dotted goldenrod;
color:goldenrod;
font-weight: 800;
padding:8px 22px;
border-radius: 12px;
margin-right:20px;
background-color: #333;
transition: 1s;
}
#btn2
{
font-family: 'Spartan', sans-serif;
border: 2px dotted goldenrod;
color:goldenrod;
font-weight: 800;
padding:8px 22px;
border-radius: 12px;
margin-left:20px;
background-color: #333;
transition: 1s;
}
#btn1:hover
{
padding-left:50px;
}
#btn2:hover{
padding-right:50px;
}