summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/wwwroot/Content/css/file-upload.css
blob: f29d46aa9808b47182fc9d91ad52f34ad93eb471 (plain)
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
#inputFile {
    display: none;
}

#input {
    width: 100%;
    height: 20em;
    max-height: 70%;
    margin: auto;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #000088;
    outline: none;
    box-shadow: inset 0 0 1px 1px rgba(0, 0, 192, .2);
}

#submit {
    font-size: 1.5em;
    border-radius: 5px;
    outline: none;
    box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, .2);
    cursor: pointer;
    border: 1px solid #008800;
    background-color: #cfc;
}