-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
75 lines (62 loc) · 1.09 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
:root {
--column-number: 1;
--grid-width-height: 420px;
--main-bg-c: darkseagreen;
}
body {
background-color:var(--main-bg-c);
}
.gridWrapper {
width: var(--grid-width-height);
height: var(--grid-width-height);
display: grid;
grid-template-columns: repeat(var(--column-number),1fr);
position: fixed;
left: 50%;
transform: translate(-50.5%, 29%);
z-index: 2;
}
.pageWrapper {
display: flex;
justify-content: center;
}
.options {
margin: 15px;
display: flex;
justify-content: center;
font-family: sans-serif;
}
.btn {
font-size: 1.3em;
}
.slider {
margin-left: 30px;
}
#header {
display: flex;
justify-content: center;
}
#headTitle {
font-family: sans-serif;
font-size: 2em;
font-weight: lighter;
}
#etchPic {
height: 700px;
width: 600px;
position: fixed;
left: 50%;
transform: translate(-50%, 0);
z-index: 1;
}
#colorPicker {
margin-left: 20px;
}
#linkToGitHub{
width: 35px;
margin-left: 95px;
}
#gitImg:hover {
border-radius: 20px;
background-color:white;
}