-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.css
116 lines (97 loc) · 1.38 KB
/
index.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
html, body {
margin: 0;
padding: 0;
width: 100%;
}
figure {
float: right;
text-align: center;
font-size: smaller;
text-indent: 0;
margin: 0.5em;
padding: 0.5em;
}
#imagesContainer {
display: flex;
flex-wrap: wrap;
align-items: center;
margin: auto;
width: auto;
margin-top: 3em;
}
#imagesContainer img {
width: auto;
max-height: 200px;
margin: 10px;
box-shadow: 1px 4px 10px;
background-color: white;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
animation-name: fadeIn;
animation-duration: 2s;
}
.navbar {
overflow: hidden;
background-color: #333;
position: fixed;
top: 0;
width: 100%;
}
.navbar * {
float: left;
display: block;
color: #f2f2f2;
padding: 6px 16px;
text-decoration: none;
}
.navbar input {
color: black;
}
.navbar *:last-child {
float: right;
}
.navbar title {
font-size: 1.5em;
}
.edit {
color: inherit;
text-decoration: none;
}
a {
text-decoration: none;
}
@media only screen and (max-width: 600px) {
#imagesContainer img {
width: 150px;
}
#imagesContainer {
margin-top: 5em;
}
}
.center-vertically {
display: flex;
align-items: center;
}
@media (max-width: 820px) {
#submit-text {
display: none;
}
}
#logo {
padding: 6px 16px;
padding-right: 0px;
}
#logo * {
width: 20px;
height: 20px;
padding: 0px;
margin: 0px;
}