-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
60 lines (52 loc) · 964 Bytes
/
main.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
html, body {
max-width: 100%;
overflow-x: hidden;
background-color: aliceblue;
}
#biosans {
font-family: 'Bio Sans';
font-weight: bold;
font-style: normal;
}
.button {
display: inline-block;
border-radius: 4px;
background-color: #f4511e;
border: none;
color: #FFFFFF;
text-align: center;
font-size: 6vw;
padding: 0px;
width: 50vw;
height: 8vw;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
}
.button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.button span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0px;
right: -20px;
transition: 0.5s;
}
.button:hover span {
padding-right: 5vw;
}
.button:hover span:after {
opacity: 1;
right: 0;
}
@media all and (max-width: 699px) {
.pc {display: none;}
}
@media all and (min-width: 700px) {
.pc {display: block;}
}