aboutsummaryrefslogtreecommitdiff
path: root/src/quiz-bunny/static/styles.css
blob: e1281025cc5bff7e432dcfb8363393411a3ff344 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
.center{
    margin: auto;
    width: 350px;
    padding: 10px;
}
input {
    margin-top: 20px;
}
input[type=text]{
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 5px;
}
input[type=button]{
    border: none;
    padding: 8px 8px;
    cursor: pointer;
    background-color: coral;
    color: white;
    white-space: normal; 
}
input[type=button]:disabled {
    color: #eeeeee;
    background-color: #dddddd;
}
input[type=button]:disabled:hover {
    box-shadow: none;
    cursor: default
}
input[type=button]:hover{
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)
}
span {
    margin-right: 1em;
}
.leave {
    position: absolute;
    bottom: 5px;
}