-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
73 lines (65 loc) · 3.13 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
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #ffff00;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1200 800'%3E%3Cdefs%3E%3CradialGradient id='a' cx='0' cy='800' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23ff8000'/%3E%3Cstop offset='1' stop-color='%23ff8000' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='b' cx='1200' cy='800' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%2300ff19'/%3E%3Cstop offset='1' stop-color='%2300ff19' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='c' cx='600' cy='0' r='600' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%239900ff'/%3E%3Cstop offset='1' stop-color='%239900ff' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='d' cx='600' cy='800' r='600' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23ffff00'/%3E%3Cstop offset='1' stop-color='%23ffff00' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='e' cx='0' cy='0' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23FF0000'/%3E%3Cstop offset='1' stop-color='%23FF0000' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='f' cx='1200' cy='0' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%230CF'/%3E%3Cstop offset='1' stop-color='%230CF' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect fill='url(%23a)' width='1200' height='800'/%3E%3Crect fill='url(%23b)' width='1200' height='800'/%3E%3Crect fill='url(%23c)' width='1200' height='800'/%3E%3Crect fill='url(%23d)' width='1200' height='800'/%3E%3Crect fill='url(%23e)' width='1200' height='800'/%3E%3Crect fill='url(%23f)' width='1200' height='800'/%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 50px auto;
background: #ffffff;
/* Brighter background for the content */
padding: 20px;
border-radius: 10px;
/* Slightly rounded corners */
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
/* Deeper shadow for more depth */
}
h1 {
font-size: 32px;
color: #e9e5e5;
margin-bottom: 30px;
font-weight: 600;
line-height: 1.2;
text-transform: uppercase;
letter-spacing: 1px;
}
input[type="file"] {
margin: 20px 0;
}
video {
border-radius: 8px;
/* Rounded corners for video */
border: 1px solid #cccccc;
/* Light border around video */
}
canvas {
border: 2px solid #cccccc;
/* Slightly thicker border */
margin-top: 20px;
max-width: 100%;
border-radius: 8px;
/* Rounded corners for canvas */
}
.color-info {
margin-top: 20px;
font-size: 20px;
/* Larger font size for color info */
color: #666666;
/* Softer color for text */
}
#colorBox {
display: inline-block;
width: 60px;
/* Slightly larger color box */
height: 60px;
/* Slightly larger color box */
border: 1px solid #333333;
margin-left: 10px;
vertical-align: middle;
/* Align with text */
}