-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
123 lines (107 loc) · 2.53 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
117
118
119
120
121
122
123
/* CSS file */
body {
font-family: 'Calibri', sans-serif;
background-color: #f4f4f4;
text-align: center;
padding: 10px;
color: rgb(23, 23, 23);
}
.container {
display: flex;
flex-direction: column;
align-items: center;
margin: 0px 0;
padding: 0px;
}
.thala-img img {
/* Your styles for the img tag go here */
max-width: 100%; /* Example: Make sure images don't exceed their container width */
height: auto; /* Maintain aspect ratio */
border-radius: 10px; /* Example: Add rounded corners to the image */
box-shadow: 0 0 10px rgba(0, 0, 0, 1); /* Example: Add a subtle box shadow */
}
.thala-search{
display: flex;
flex-direction: row;
}
.thala-message {
display: flex;
font-family: cursive;
flex-direction: column;
align-items: center;
margin: 10px 0;
padding: 10px;
font-weight: bolder;
}
.thala-img {
display: flex;
justify-content: center;
align-items: center;
margin: 15px;
padding: 0;
width: 100%;
pointer-events: none;
}
.thala-video {
width: 100%;
height: 100%;
}
/* Style the iframe */
.thala-video iframe {
width: 100%;
height: 100%;
}
/* Media query for screens smaller than 768px */
/* @media screen and (max-width: 768px) {
.thala-img {
width: 100%;
height: none;
padding-left: 200;
pointer-events: none;
}
} */
/* Media query for screens smaller than 480px */
/* @media screen and (max-width: 480px) {
.thala-img {
padding-right: 10px;
padding-left: 200;
pointer-events: none;
}
} */
#inputBox {
padding: 5px;
border-radius: 5px;
border-color: #95919139;
outline: none;
text-align: center;
}
#submitButton, #styleButton {
background: rgb(1, 81, 255);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 5px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.12);
color: #fff;
cursor: pointer;
display: inline-block;
margin: 3px;
padding: 10px;
text-align: center;
text-decoration: none;
transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.share-component {
display: flex;
gap: 12px; /* Adjust the gap according to your preference */
}
.share-component button {
cursor: pointer;
}
.counter{
display: flex;
margin: none;
padding: none;
}
.counter img{
padding-left: 30px;
padding-top: 20px;
}