-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (100 loc) · 2.23 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
body {
margin: 0;
text-align: center;
font-family: sans-serif; /*temporary*/
}
.ba-header {
color: white;
background-color: rgba(35,35,46);
height: 300px;
}
.main, .ba-footer {
background-color: #fff;
color: rgb(35,35,46);
}
.main {
/*width: 50%;*/
}
main>p {
margin-left: 25%;
margin-right: 25%;
}
ul {
list-style-type: none;
display: flex;
text-align: left;
font-size: 0.6em;
padding-left: 23%;
padding-right: 23%;
}
a.button31 {
position: relative;
z-index: 1;
display: inline-block;
width: 3em;
height: 3em;
border-radius: 100%;
outline: none;
background: #ddd;
box-shadow: 0 1px rgba(35,35,46,.1) inset, 0 1px #fff;
}
a.button31:after, a.button31:before {
content: "";
position: absolute;
z-index: -1;
top: 7.5%;
left: -15%;
right: 0;
bottom: 0;
width: 30%;
height: 10%;
margin: auto;
background: #999;
box-shadow: 0 1px rgba(0,0,0,.1) inset, 0 1px #fff;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
a.button31:before {
left: 15%;
-webkit-transform: rotate(315deg);
transform: rotate(315deg);
}
a.button31:hover, a.button31:focus {
background: #e35d31;
box-shadow: none;
}
a.button31:hover:after, a.button31:hover:before {
background: #fff;
box-shadow: none;
}
a.button31:focus {
background-image:
linear-gradient(120deg, transparent 45%, #e35d31 45%, #e35d31 55%, transparent 55%),
radial-gradient(transparent 20%, #fff 20%, #fff 30%, transparent 30%);
-webkit-animation: rotate31 1s linear infinite forwards;
animation: rotate31 1s linear infinite forwards;
}
a.button31:focus:after, a.button31:focus:before {
content: "";
position: absolute;
z-index: -1;
top: calc(-30% - 4px/2);
left: 4px;
width: 0;
height: 0;
border-top: 4px solid transparent;
border-left: 8px solid #fff;
border-bottom: 4px solid transparent;
background: transparent;
box-shadow: none;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
a.button31:focus:before {
top: calc(30% + 4px/2);
left: -4px;
border-left: none;
border-right: 8px solid #fff;
}
@-webkit-keyframes rotate31 {
100% {-webkit-transform: rotate(360deg);}