-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
116 lines (92 loc) · 2.41 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
113
114
115
116
@-webkit-keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
html {
height: 100%;
}
body {
-webkit-animation: fade-in 1.5s linear;
-moz-animation: fade-in 1.5s linear;
-o-animation: fade-in 1.5s linear;
animation: fade-in 1.5s linear;
background: url(background.jpg) no-repeat;
-moz-background-size: 100%;
-webkit-background-size: 100%;
-o-background-size: 100%;
background-size: cover;
font-family: monospace, sans-serif;
font-size: 25px;
color: #ccc;
}
.getLocation {
display: block;
color: #777674;
font-weight: bold;
text-decoration: none;
text-shadow: rgba(255, 255, 255, .5) 1px 1px, rgba(100, 100, 100, .3) 5px 3px 4px;
user-select: none;
padding: 0.7em 0.8em;
outline: none;
border-radius: 3px / 100%;
background-image: linear-gradient(45deg, rgba(255, 255, 255, .0) 30%, rgba(255, 255, 255, .8), rgba(255, 255, 255, .0) 70%),
linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, .3)),
linear-gradient(to right, rgba(125, 125, 125, 1), rgba(255, 255, 255, .9) 50%, rgba(125, 125, 125, .5)),
linear-gradient(to right, rgba(125, 125, 125, 1), rgba(255, 255, 255, .9) 50%, rgba(125, 125, 125, .5)),
linear-gradient(to right, rgba(223, 190, 170, 1), rgba(255, 255, 255, .9) 50%, rgba(223, 190, 170, .5)),
linear-gradient(to right, rgba(223, 190, 170, 1), rgba(255, 255, 255, .9) 50%, rgba(223, 190, 170, .5));
background-repeat: no-repeat;
background-size: 220% 90%, auto, 110% 2px, 110% 5px, 90% 1px, 100% 1px;
background-position: 170% 0, 0 0, 0 0, 0 100%, 0 4px, 0 calc(100% - 4px);
box-shadow: rgba(0, 0, 0, .5) 5px 8px 8px -8px;
}
.getLocation:hover {
transition: .5s linear;
background-position: -150% 0, 0 0, 0 0, 0 100%, 0 5px, 0 calc(100% - 4px);
}
.getLocation:active {
top: 1px;
}
.emplacement {
padding-left: 20%;
}
li {
list-style-type: none;
}
.buttonPosition {
padding-left: 30%;
}
.buttonPosition {
padding-left: 45.5%
}
.weatherPosition {
padding-left: 38%
}