-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtruth.css
81 lines (80 loc) · 2.48 KB
/
truth.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
#secretContent {
display: none;
}
body {
margin: 0;
font-family: Arial, sans-serif;
background-image: linear-gradient(to left top, #031632, #0d1b37, #171f3d, #202443, #282948);
overflow: auto;
text-align: center;
min-height: 100vh;
}
.container {
width: 80%;
max-width: 1200px;
margin: 20px auto;
}
iframe {
width: 100%;
height: 720px;
border-radius: 25px;
border: 2px solid black;
}
.text-top, .text-bottom {
margin: 20px 0;
font-size: 18px;
color: dodgerblue;
font-family: "Lucida Handwriting", cursive;
text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff,
1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}
button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
margin-top: 10px;
}
button:hover {
background-color: #0056b3;
}
.text-box {
width: 100%;
max-width: 800px;
margin: 20px auto;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #fff;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
min-height: 0px;
max-height: 100px;
overflow-y: auto;
overflow-x: hidden;
}
video {
width: 100%;
max-width: 800px;
margin: 20px auto;
border: 1px solid #ccc;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.video-caption {
width: 100%;
max-width: 800px;
margin: 20px auto;
font-size: 16px;
color: #666;
text-align: center;
}
.title {
font-size: 25px;
color: dodgerblue;
font-family: "Lucida Handwriting", cursive;
text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff,
1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}