-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
128 lines (114 loc) · 2.06 KB
/
styles.css
File metadata and controls
128 lines (114 loc) · 2.06 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
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
body {
background-color: rgb(26, 40, 54);
color: #ffffff;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.42857143;
margin: 0;
}
div.grid-container {
grid-template-columns: 25% 25% 25% 25%;
display: grid;
grid-gap: 10px;
padding: 10px;
column-gap: 0px;
row-gap: 50px;
}
div.introText {
grid-row-start: 2;
grid-row-end: 3;
grid-column-start: 1;
grid-column-end: 5;
}
div.gallery {
background-color: gold;
grid-row-start: 3;
grid-row-end: 15;
grid-column-start: 1;
grid-column-end: 5;
margin: 30px 30px 30px 30px;
z-index: 2;
}
div.art1 {
grid-row-start: 5;
grid-row-end: 13;
grid-column-start: 1;
grid-column-end: 3;
margin: 0 30px 0 60px;
z-index: 10;
}
div.art2 {
background-color: white;
grid-row-start: 5;
grid-row-end: 13;
grid-column-start: 3;
grid-column-end: 5;
margin: 0 60px 0 30px;
z-index: 10;
}
div.buttonSection {
grid-row-start: 15;
grid-row-end: 15;
grid-column-start: 1;
grid-column-end: 5;
margin: 0 50px 0 50px;
text-align: center;
}
div.documentation {
grid-row-start: 15;
grid-row-end: 22;
grid-column-start: 1;
grid-column-end: 5;
margin: 50px 0 0 0;
}
h1 {
color: rgb(233, 200, 39);
text-align: center;
font-size: 2em;
font-weight: bold;
margin: 0;
}
h2 {
color: rgb(252, 222, 112);
text-align: center;
font-size: 1.5em;
font-weight: bold;
margin: 50px 0 0 0;
}
p {
color: rgb(255, 255, 255);
text-align: center;
font-size: 1em;
font-weight: bold;
margin: 10px 200px 20px 200px;
line-height: 2em;
}
svg.paintingSVG {
width: 100%;
height: 100%;
display: block;
margin: auto;
cursor: pointer;
}
canvas.paintingCanvas {
width: 100%;
height: 100%;
display: block;
margin: auto;
cursor: pointer;
}
button.documentation-show {
background-color: rgb(147, 126, 8);
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: auto;
cursor: pointer;
}
div.documentation {
display: none;
}