-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
72 lines (63 loc) · 1.19 KB
/
styles.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
form {
background-color: white;
margin-bottom: 0;
max-width: 300px;
}
form input {
border-radius: 3px;
padding: 10px;
margin-bottom: 2px;
text-align: center;
width: 100%;
height: 40px;
}
form input:focus {
outline: 0;
}
form input[type="submit"] {
background: #CFB497;
border: none;
color: #3E1422;
border-bottom: 2px solid #822C4E;
}
form input[type="submit"]:active {
border-top: 2px solid #822C4E;
border-bottom: 2px solid white;
}
.centre-container {
height: 100%;
min-height: 410px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.image {
width: 250px;
background-color: white;
height: 160px;
background-repeat: no-repeat;
background-size: 220px;
background-image: url("wizard.png");
background-position: center 0;
}
.instructions {
margin-top: 15px;
font-family: 'Open Sans', sans-serif;
width: 300px;
font-size: 1em;
background: #F0F0F0;
border-radius: 3px;
border-bottom: 1px solid #C7C7C7;
}
.instructions h1 {
text-align: center;
font-weight: 600;
font-size: 1.3em;
background-color: #E6E6E6;
padding: 15px;
margin: 0;
}
.instructions ol {
font-family: 'Calibri', sans-serif;
}