-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (97 loc) · 1.97 KB
/
style.css
File metadata and controls
119 lines (97 loc) · 1.97 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
body {
background-color : #A6D785;
font-family : arial;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
p {
padding: 1rem;
}
.row {
margin-bottom: 3rem;
}
#pro{
text-shadow:
0 0 5px #fff,
0 0 5px #fff,
0 0 10px #fff,
0 0 20px #fff,
0 0 40px #0ff,
0 0 80px #0ff,
0 0 90px #0ff,
0 0 100px #0ff,
0 0 150px #0ff;
}
#pro:hover {
text-shadow: 1px 0px 20px yellow;
}
.hvr-pulse {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
}
.profile img {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
transition: all 0.5s ease;
border-radius: 50%;
}
.profile img:hover {
border-radius: 50%;
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
.foreign-place {
background: #f4f4f4;
border: 1px #ccc solid;
}
.foreign-place h3 {
padding: 2rem;
}
.u-full-width {
width: 100%;
box-sizing: border-box;
}
.u-max-full-width {
max-width: 100%;
box-sizing: border-box;
}
.foreign-language {
background: #f4f4f4;
border: 1px #ccc solid;
padding: 1.6rem;
}
table thead {
background-color: #ffff66;
}
.places {
background-color: #fff;
padding: 1rem;
margin-left: 1%;
margin-bottom: 3rem;
}
.places:last-of-type {
margin-right: 0;
}
.historical-places img:hover {
transform: scale(1.2);
-webkit-transform-origin: center;
}
.historical-places img {
height: 150px;
width: 100%;
}
hr.deco {
border-top: 3px dashed #ffff66;
}
hr.deco1 {
order-top: 5px solid #8c8b8b;
border-bottom: 5px solid #ffff66;
}