-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
87 lines (73 loc) · 1.53 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
73
74
75
76
77
78
79
80
81
82
83
84
85
body {
font-family: 'Titillium Web', sans-serif;
background: #f4f4f4;
margin: 0;
padding: 20px;
color: #333;
}
@font-face {
font-family: 'Titillium Web';
src: url('fonts/TitilliumSansPro-Regular.woff2') format('woff2'),
url('/fonts/TitilliumSansPro-Regular.woff') format('woff');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Titillium Web';
src: url('fonts/TitilliumSansPro-Bold.woff2') format('woff2'),
url('fonts/TitilliumSansPro-Bold.woff') format('woff');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Titillium Web';
src: url('fonts/TitilliumSansPro-Italic.woff2') format('woff2'),
url('fonts/TitilliumSansPro-Italic.woff') format('woff');
font-weight: 400;
font-style: italic;
}
.container {
width: 80%;
margin: auto;
background: white;
padding: 20px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
text-align: center;
}
h1 {
color: #333;
}
p.info {
margin-top: 20px;
font-style: italic;
color: #555;
}
.choices {
display: flex;
justify-content: space-around;
margin-top: 20px;
}
.choice {
width: 45%;
padding: 20px;
box-shadow: 0 0 5px rgba(0,0,0,0.1);
border-radius: 5px;
background: #fff;
text-align: center;
}
.choice a {
text-decoration: none;
color: inherit;
}
.choice img {
width: 100px;
height: 100px;
margin-bottom: 10px;
}
.choice h2 {
margin-top: 10px;
}
.choice p {
color: #666;
font-size: 0.9em;
}