-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
107 lines (89 loc) · 2.06 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
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
html {
background-color: #181818;
/* background-size: 100%; */
border-image: linear-gradient(to right, #3a86ff 25%, #8338ec 25%, #ff006e 50%, #fb5607 50%, #ffbe0b 75%, #0aff99 75%) 100;
border-width: 1px;
border-style: solid;
padding-bottom: 111px;
margin-top: 2px;
overflow-x:hidden;
}
#side-menu {
width: 20%;
margin-left: 10%;
margin-top: 4%;
float: left;
background-color: #202020;
border-radius: 20px;
height: 500px;
border-image: linear-gradient(to right, #3a86ff 25%, #8338ec 25%, #ff006e 50%, #fb5607 50%, #ffbe0b 75%, #0aff99 75%) 50;
border-width: 1px;
border-style: solid;
}
h5 {
font-family: 'Source Sans Pro', sans-serif;
color: #d8e2dc;
font-size: 20px;
margin: 0px -24%;
}
#clear-button{
margin-left: 34%;
margin-top: 7%;
}
button {
background-color: #394656;
border-color: #283618;
border-width: 1px;
font-size: 17px;
color: #d8e2dc;
border-radius: 10px;
padding: 5px 10px 5px 10px;
}
button:disabled {
background-color: #adb5bd;
}
button:hover {
border-radius: 100px;
}
input[type="color"] {
display: block;
width: 20%;
height: 7%;
border-radius: 2px;
margin-left: 40%;
}
.title {
font-family: 'Gluten', cursive;
/* color: #d8e2dc; */
font-size: 50px;
margin: 0px auto;
background-image: linear-gradient(to right, #3a86ff, #8338ec, #ff006e, #fb5607, #ffbe0b, #0aff99);
-webkit-background-clip: text;
-moz-background-clip: text;
background-clip: text;
color: transparent;
}
.grid-size {
margin-left: 50%;
margin-top: 4%;
}
.grid-button {
margin-top: 7%;
position: relative;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
#container {
display: grid;
width: 30%;
grid-template-rows: repeat(var(--grid-rows));
grid-template-columns: repeat(var(--grid-cols), 1fr);
margin-left: 50%;
margin-top: 6%;
margin-bottom: 0px;
}
.grid-item {
padding: 45%;
border: 0.5px solid #343a40;
text-align: center;
}