-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
169 lines (141 loc) · 3.14 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
body{
display: flex;
flex-direction: column;
align-items: center;
margin: 0px;
padding: 0px;
background-color: rgb(22, 8, 48);
}
h1{
font-family: "Megrim";
font-size: 3rem;
margin-top: 50px;
color: white;
padding: 20px;
border: 1px solid white;
box-shadow:
0 0 10px rgba(255, 255, 255, 0.636),
0 0 15px rgba(255, 255, 255, 0.636),
0 0 20px rgb(0, 255, 187),
0 0 25px rgb(0, 255, 187),
0 0 30px rgb(0, 255, 187),
0 0 35px rgb(0, 255, 187);
text-shadow:
0 0 10px rgba(255, 255, 255, 0.636),
0 0 15px rgba(255, 255, 255, 0.636),
0 0 20px rgb(0, 255, 187),
0 0 25px rgb(0, 255, 187),
0 0 30px rgb(0, 255, 187),
0 0 35px rgb(0, 255, 187);
}
.fullcontainer{
display: flex;
flex-direction: column;
width: 760px;
height: 680px;
padding: 5px;
margin-top: 30px;
border: 1px solid white;
background-color: rgb(35, 13, 76);
}
.upperbox{
display: flex;
flex-direction: row;
gap: 2px;
}
/*The side-buttons*/
.buttoncontainer{
display: flex;
flex-direction: column;
gap: 220px;
align-items: center;
height: 560px;
width: 200px;
border: 1px solid rgb(35, 13, 76);
background-color: rgb(35, 13, 76);
}
.buttoncontainer button{
width: 150px;
padding: 10px;
font-family: "Megrim";
font-size: 1.5rem;
color: white;
background-color: rgb(22, 8, 48);
border: none;
border-radius: 5px;
transition: ease-in-out 0.3s;
}
.colors{
display: flex;
flex-direction: column;
margin-top: 10px;
gap: 25px;
}
.colors button:hover{
box-shadow:
0 0 10px rgba(255, 255, 255, 0.648),
0 0 15px rgb(0, 255, 187),
0 0 20px rgb(0, 255, 187),
0 0 25px rgb(0, 255, 187);
text-shadow:
0 0 10px rgba(255, 255, 255, 0.648),
0 0 15px rgb(0, 255, 187),
0 0 20px rgb(0, 255, 187),
0 0 25px rgb(0, 255, 187);
}
.clearer button:hover{
box-shadow:
0 0 10px rgba(255, 255, 255, 0.648),
0 0 15px red,
0 0 20px red,
0 0 25px red;
text-shadow:
0 0 10px rgba(255, 255, 255, 0.648),
0 0 15px red,
0 0 20px red,
0 0 25px red;
}
/*The actual sketch-pad*/
#gridcontainer{
display: grid;
height: 560px;
width: 560px;
border: 1px solid rgb(35, 13, 76);
background-color: white;
}
/*The size-choices*/
.lowerbox{
display: flex;
}
.sizescontainer{
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 63px;
width: 100%;
height: 130px;
}
.sizescontainer button{
width: 110px;
padding: 10px;
font-family: "Megrim";
font-size: 1rem;
color: white;
background-color: rgb(22, 8, 48);
border: none;
border-radius: 5px;
transition: ease-in-out 0.3s;
}
.sizescontainer button:hover{
box-shadow:
0 0 10px rgba(255, 255, 255, 0.648),
0 0 15px rgb(0, 255, 187),
0 0 20px rgb(0, 255, 187),
0 0 25px rgb(0, 255, 187);
text-shadow:
0 0 10px rgba(255, 255, 255, 0.648),
0 0 15px rgb(0, 255, 187),
0 0 20px rgb(0, 255, 187),
0 0 25px rgb(0, 255, 187);
}
/*====Media Queries are to be added!====*/