-
Notifications
You must be signed in to change notification settings - Fork 27
/
style.css
47 lines (47 loc) · 845 Bytes
/
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
P,FOOTER,tr {text-align: center;}
table { margin: auto; }
tr.left{text-align:left}
.button {
display: inline-block;
border-radius: 10px;
background-color:aqua;
border: none;
color: #000080;
text-align: center;
font-size: 20px;
padding: 5px;
width: 200px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
}
#button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
#button span:after {
content: '»';
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;
}
img#logo{
-webkit-filter: drop-shadow(10px 10px 10px red);
filter: drop-shadow(8px 8px 10px red);
}
* {
max-width: 100%;
height: auto;
font-family: 'Roboto', sans-serif;
}