forked from pajasevi/UnCSS-Online
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
134 lines (115 loc) · 2.1 KB
/
main.css
File metadata and controls
134 lines (115 loc) · 2.1 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
background: url("/static/img/background-small.png") no-repeat center center #fff;
background-size: cover;
box-sizing: border-box;
@media screen and (min-width: 540px) {
background: url("/static/img/background.png") no-repeat center center #fff;
background-size: cover;
}
}
.container {
max-width: 160rem;
margin: auto;
padding-left: 2rem;
padding-right: 2rem;
}
.header {
margin-bottom: 2rem;
padding-top: 2rem;
padding-bottom: 0.5rem;
text-align: center;
background: #fff;
}
textarea {
min-height: 20rem;
resize: none;
background: #fff;
}
.text-center {
text-align: center;
}
.button-large {
font-size: 1.4rem;
height: 4.5rem;
line-height: 4.5rem;
padding: 0 2rem;
transition: height 0.3s;
}
.button-loading {
width: 5rem;
height: 5rem;
font-size: 0;
border-radius: 50%;
animation-name: loading;
animation-duration: 1.5s;
animation-delay: 0.3s;
animation-timing-function: ease;
animation-direction: normal;
animation-play-state: running;
animation-iteration-count: infinite;
}
.error {
margin-bottom: 1rem;
padding: 1rem;
border: 1px solid #b50000;
background: #d60000;
color: #fff;
border-radius: 2px;
box-shadow: 0 1px 2px #b7b7b7;
}
.footer {
padding: 2rem 2rem;
background: #9b4dca;
color: #fff;
@media screen and (min-width: 40rem) {
padding: 2rem 10rem;
}
& a {
color: currentColor;
text-decoration: underline;
&:hover {
color: #ccc;
}
}
}
.github-corner:hover .octo-arm {
animation: octocat-wave 560ms ease-in-out;
}
@media (max-width: 500px) {
.github-corner:hover .octo-arm {
animation: none;
}
.github-corner .octo-arm {
animation: octocat-wave 560ms ease-in-out;
}
}
@keyframes octocat-wave {
0%,
100% {
transform: rotate(0);
}
20%,
60% {
transform: rotate(-25deg);
}
40%,
80% {
transform: rotate(10deg);
}
}
@keyframes loading {
0% {
box-shadow: 0 0 0 15px #fff inset;
}
50% {
box-shadow: 0 0 0 5px #fff inset;
}
100% {
box-shadow: 0 0 0 15px #fff inset;
}
}