-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
49 lines (47 loc) · 892 Bytes
/
index.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
body {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', Arial, sans-serif;
background-image: url("images/table.png");
background-size: cover;
font-weight: bold;
color: white;
text-align: center;
margin: auto
}
.container{
border: 1px solid whitesmoke;
padding: 20px;
margin: 40px auto;
width: 500px;
}
h1 {
color: goldenrod;
font-size: 40px
}
#message-el {
font-style: italic;
margin-bottom: 30px;
font-size: 20px
}
button {
color: #016f32;
width: 150px;
background: goldenrod;
padding-top: 5px;
padding-bottom: 5px;
font-weight: bold;
border: none;
border-radius: 2px;
margin-bottom: 2px;
margin-top: 2px;
}
button:hover {
background: yellow;
}
#cards-el, #sum-el{
font-size: 17px
}
.credits{
font-weight: 100;
padding-top: 20px;
font-size: 12px;
}