-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
94 lines (82 loc) · 1.39 KB
/
main.css
File metadata and controls
94 lines (82 loc) · 1.39 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
* {
margin: 0;
padding: 0;
}
body {
background-color: black;
}
html,
body {
height: 100%;
}
body {
color: #ccc;
font-family:
Helvetica Neue,
Verdana,
sans-serif;
font-size: 20px;
}
p {
line-height: 1.5em;
list-style: none;
}
p a,
p a:visited {
color: #56bff6;
text-decoration: none;
}
p a:hover {
border-bottom: 1px solid #56bff6;
}
canvas,
section {
display: block;
}
#c {
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
#wordInput {
position: absolute;
top: 20px;
left: 20px;
padding: 10px 15px;
font-size: 18px;
border: 2px solid rgba(255, 255, 255, 0.087);
border-radius: 8px;
outline: none;
background-color: rgba(255, 255, 255, 0.2);
color: #fff;
width: 250px;
z-index: 10;
transition: box-shadow 0.3s ease;
}
#wordInput:focus {
box-shadow: 0 0 15px rgb(255, 255, 255);
}
#hueInput {
position: absolute;
top: 20px;
right: 20px;
padding: 10px 15px;
font-size: 18px;
border: 2px solid rgba(255, 255, 255, 0.087);
border-radius: 8px;
outline: none;
background-color: rgba(255, 255, 255, 0.2);
color: #fff;
width: 250px;
z-index: 10;
transition: box-shadow 0.3s ease;
}
#hueInput:focus {
box-shadow: 0 0 15px rgb(255, 255, 255);
}
#attribution {
bottom: 40px;
position: absolute;
right: 40px;
}