Welcome to mirror list, hosted at ThFree Co, Russian Federation.

trip.css « css - github.com/thfree/lsd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3446e5f65e328db96a0eb0987ad375c0b198501 (plain)
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
#body-login input.primary,
#body-login button.primary,
#body-login #alternative-logins li a {
    background-color: rgba(0, 0, 0, .2) !important;
}

@keyframes lsdtrip {
	0% {
		background-color: hsl(201, 100%, 39%);
	}
	10% {
		background-color: hsl(237, 100%, 39%);
	}
	20% {
		background-color: hsl(273, 100%, 39%);
	}
	30% {
		background-color: hsl(309, 100%, 39%);
	}
	40% {
		background-color: hsl(345, 100%, 39%);
	}
	50% {
		background-color: hsl(21, 100%, 39%);
	}
	60% {
		background-color: hsl(57, 100%, 39%);
	}
	70% {
		background-color: hsl(93, 100%, 39%);
	}
	80% {
		background-color: hsl(129, 100%, 39%);
	}
	90% {
		background-color: hsl(165, 100%, 39%);
	}
	100% {
		background-color: hsl(201, 100%, 39%);
	}
}

#body-login,
#body-user #header,
#body-settings #header,
#body-public #header {
	background-color: hsl(201, 100%, 39%);
	animation: lsdtrip 2s linear infinite;
}

/* Based on tada animation from Animate.css https://github.com/daneden/animate.css */

@keyframes tada {
	from {
		transform: scale3d(1, 1, 1);
	}
	10%, 20% {
		transform: scale3d(.8, .8, .8) rotate3d(0, 0, 1, -4deg);
	}
	30%, 50%, 70%, 90% {
		transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 4deg);
	}
	40%, 60%, 80% {
		transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -4deg);
	}
	to {
		transform: scale3d(1, 1, 1);
	}
}

.logo,
#appmenu .active .app-icon,
#appmenu li:hover .app-icon,
#appmenu li:focus .app-icon,
#more-apps:hover > a > div,
#more-apps:focus > a > div,
.notifications .notifications-button:hover,
.notifications .notifications-button:focus,
#contactsmenu .icon-contacts:hover,
#contactsmenu .icon-contacts:focus,
.avatardiv:hover,
.avatardiv:focus {
	animation: tada 1s linear infinite !important;
}