-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (61 loc) · 1.36 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
.d-IB {
display: inline-block;
}
h3 {
color: #fff;
font-family: Arial, Helvetica, sans-serif;
margin: 0;
}
.Background {
width: 100%;
height: 100%;
position: relative;
}
.Background video {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.window {
position: absolute;
width: 300px;
max-width: calc(100% - 30px); /* Responsive maximum width */
height: auto;
background-color: rgba(0, 0, 0, 0.6);
border-radius: 10px;
margin: 0 auto;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 15px;
text-align: center;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); /* Adding shadow for depth */
}
.window h3 {
padding: 10px 0;
}
.icon {
width: 80px; /* Enlarging icon */
height: 80px; /* Enlarging icon */
margin-bottom: 20px;
border-radius: 50%; /* Making icon circular */
background-color: #fff; /* Adding background color */
padding: 10px; /* Adjusting padding for better appearance */
box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5); /* Adding glow effect */
}
.changeTempK, .changeTempF{
background-color: rgba(210, 200, 200, 0.6);
color: white;
border: none;
margin-left: 10px;
padding: 5px;
border-radius: 5px;
}