-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.css
56 lines (48 loc) · 890 Bytes
/
app.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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
border-spacing: 0;
}
html, body {height: 100%;}
body{
height: 100%;
width: 100%;
overflow: hidden;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#wrapper{
width: 80%;
height: 80%;
margin: 3% auto;
outline: 10px dashed #DDDDDD;
background-color: #EEEEEE;
cursor: pointer;
text-align: center;
}
#area{
font-size: 5.5vh;
color: #999999;
position: relative;
top: 20%;
}
#area small{
display: block;
font-size: 3.3vh;
}
#area input{
display: none;
}
footer{
display: none;
background-color: #EEEEEE;
width: 100%;
position: fixed;
bottom: 0;
padding: 10px;
text-align: center;
}
footer button{
padding: 10px;
margin: 5px;
}