-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (66 loc) · 1.63 KB
/
style.css
File metadata and controls
75 lines (66 loc) · 1.63 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
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
#fullscreenButton {
padding: 10px 20px;
background-color: #29b6f6;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
margin-bottom: 20px;
}
#fullscreenButton:hover {
background-color: #0288d1;
}
#logContainer {
background-color: #ffffff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
width: 300px;
}
h1 {
text-align: center;
color: #333;
}
#log {
list-style-type: none;
padding: 0;
margin: 0;
}
#log li {
background-color: #e1f5fe;
margin: 10px 0;
padding: 10px;
border-left: 5px solid #29b6f6;
font-size: 14px;
color: #555;
}
#content {
margin-top: 20px;
padding: 10px;
background-color: #f0f0f0;
width: 90%;
max-width: 600px;
text-align: justify;
user-select: none; /* Disable text selection */
-webkit-user-select: none; /* Safari and Chrome */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE and Edge */
cursor: default; /* Optional: change cursor to indicate text cannot be selected */
}
/* Ensure all elements within body are non-selectable */
body, * {
user-select: none !important;
-webkit-user-select: none !important;
-moz-user-select: none !important;
-ms-user-select: none !important;
}