-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
104 lines (84 loc) · 1.25 KB
/
styles.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
body{
background-color: black;
color: white;
}
a{
color: white;
}
#title{
color: white;
/* text-align: center; */
font-size: 50px;
}
.simple_animation{
width:400px;
height: 50px;
left: 50%;
animation-duration: 5s;
animation-name: translate_word;
animation-fill-mode: forwards;
}
@keyframes translate_word{
from{
transform: translate(0%);}
to{
transform: translate(50%);}
}
img{
width: 100%;
height: auto;
}
.images1{
display: flex;
margin: 2.5%
}
.images1 img{
flex: 1;
max-width: 20%;
}
p{
text-align: center;
}
.places{
display: flex;
}
.stats{
display: flex;
flex-direction: column;
width: 50%;
margin: 0 auto;
text-align: center;
}
table, th, td{
border: 1px solid white;
}
form {
display: flex;
flex-direction: column;
width:25%;
max-width: 80%;
padding: 10px;
border: 1px solid white;
margin: 0 auto;
}
#btn{
display: inline;
width:25%;
padding: 0% 5% 0% 5%;
text-align: center;
margin-top: 5px;
margin-left: 75%;
}
.fdata{
text-align: center;
}
.yt_vidoes{
padding: 10%;
}
iframe{
width: 33%;
height: 300px;
}
.ytv{
text-align: center;
}