-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (107 loc) · 1.98 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
124
125
126
127
128
/* * {
border: black solid;
box-sizing: border-box;
} */
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color:black;
}
.main {
height: 600px;
width: 500px;
}
.title {
height: 100px;
width: 500px;
display: flex;
justify-content: space-between;
align-items: center;
}
.canvas {
display: flex;
box-sizing: border-box;
flex-wrap: wrap;
justify-content: center;
align-items: center;
height: 500px;
width: 500px;
box-shadow: 0 0 50px #05BE05;
}
.canvas > * {
border: 1px #393B39 solid;
background-color: black;
opacity: .8;
}
.text {
font-family: 'VT323', monospace;
font-size: 45px;
color:rgb(5, 190, 5);
text-shadow: #05BE05 1px 1px 15px;
}
.inputs {
width: 150px;
height: 100px;
align-self: center;
display: flex;
flex-direction: column;
align-items: flex-start;
}
#reset {
color:#05BE05;
font-family: 'VT323', monospace;
font-size: 20px;
text-shadow: #05BE05 1px 1px 5px;
border: none;
background-color: black;
padding: 0;
}
#reset:hover {
text-decoration: currentColor dotted underline 1px;
cursor: pointer;
}
.colors {
display: flex;
gap: 5px;
}
.colors>* {
font-size: 15px;
}
.green {
color: rgb(46, 228, 85);
text-shadow: rgb(46, 228, 85) 1px 1px 5px;
}
.red {
color: #F33B1B;
text-shadow: #F33B1B 1px 1px 5px;
}
.yellow {
color: #EBFF0F;
text-shadow: #EBFF0F 1px 1px 5px;
}
.blue {
color: #27EBF6;
text-shadow: #27EBF6 1px 1px 5px;
}
.eraser {
color: white;
text-shadow: white 1px 1px 5px;
}
.colors>*:hover {
text-decoration: currentColor dotted underline 1px;
cursor: pointer;
}
input[type="range"]:hover {
cursor: pointer;
}
.input-area {
display: flex;
gap: 5px;
}
.input-area>label {
color: #05BE05;
font-size: 16px;
}