-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
86 lines (78 loc) · 1.48 KB
/
style.css
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
h1{
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
html,body {
text-align: center;
background-color: #68ef90;
height: 900px;
}
.button {
display: inline-block;
border-radius: 4px;
background-color: #f4511e;
border: none;
color: #FFFFFF;
text-align: center;
font-size: 28px;
padding: 20px;
width: 200px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(228, 10, 10, 0.425);
}
.button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.button span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
.button:hover span {
padding-right: 25px;
}
.button:hover span:after {
opacity: 1;
right: 0;
}
.button-container-div {
display: block;
margin:0 auto;
}
p{
text-align: center;
font-family: Arial, Helvetica, sans-serif;
padding: 20px 20px;
font-weight: 300;
font-style: oblique;
font-size: large;
}
#main{
text-align: center;
background-color: #a268ef;
height: 200px;
width: auto;
}
a:link, a:visited {
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover, a:active {
background-color: red;
}
footer{
text-align: center;
font-family: Arial, Helvetica, sans-serif;
padding: 20px 20px;
font-weight: 300;
font-size: large;
}