-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
76 lines (65 loc) · 1.06 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
body {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
background: #000000 url('images/background.jpg') no-repeat center center fixed;
background-size: cover;
overflow-x: hidden;
}
.navbar {
padding: 15px;
height: 40px;
color: #888888;
}
.navbar h1 {
margin: 0;
text-align: center;
}
.top-container {
width: 500px;
margin: 30px auto;
}
.btn {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 5px;
cursor: pointer;
}
.btn-dark {
background: #333333;
color: #dcdcdc;
border: #666666 1px solid;
}
.btn-light {
background: #c5c5c5;
color: #333333;
border: #cccccc 1px solid;
}
.select {
height: 40px;
background: #333333;
color: #dcdcdc;
padding: 3px;
width: 100%;
border: 1px #666666 solid;
margin-bottom: 10px;
cursor: pointer;
}
.bottom-container {
max-width: 960px;
margin: auto;
padding: 10px;
}
#photos {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 10px;
}
#photos img {
width: 100%;
border: 3px #dcdcdc solid;
}
#canvas {
display: none;
}