-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
67 lines (58 loc) · 1.1 KB
/
Copy pathindex.css
File metadata and controls
67 lines (58 loc) · 1.1 KB
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
body{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
background-image: url(./images/felt_table.png);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
width: 750px;
margin: auto;
color: whitesmoke;
font-size: 2vw;
font-weight: bold;
text-align: center;
padding: 40px 0;
}
.container {
border: 2px solid whitesmoke;
background-color: darkgreen;
}
h1{
color: whitesmoke;
font-size: 24px;
background-color: crimson;
border-radius: 1px;
padding: 10px;
margin: 0;
}
h2 {
color: whitesmoke;
font-size: 20px;
}
p {
font-size: 17px;
}
#message-el{
font-style: italic;
}
button{
font-size: 16px;
font-weight: bold;
color: white;
padding: 10px;
background-color: #0c8810;
border: none;
border-radius: 4px;
margin: 10px;
}
button:hover {
background-color: crimson;
color: whitesmoke;
}
button:disabled {
background-color: darkgray;
color: whitesmoke;
}
.card-img {
max-width: 150px;
}