-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcende.css
More file actions
47 lines (46 loc) · 906 Bytes
/
Copy pathcende.css
File metadata and controls
47 lines (46 loc) · 906 Bytes
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
html, body {
height: 100%;
}
body {
margin: 0;
font-family: sans-serif;
background-image: url("background.jpg");
}
.flex-container {
height: 100%;
padding: 0;
margin: 0;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
align-items: center;
justify-content: center;
}
.box {
width: auto;
border: 4px solid black;
text-align: center;
background-color: white;
}
.flex-item {
padding: 5px;
width: 300px;
height: 300px;
color: black;
font-weight: bold;
text-align: left;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
color: black;
}
::-moz-placeholder { /* Firefox 19+ */
color: black;
}
:-ms-input-placeholder { /* IE 10+ */
color: black;
}
:-moz-placeholder { /* Firefox 18- */
color: black;
}