-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (49 loc) · 967 Bytes
/
style.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
body {
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
background-image: url(img/table.jpeg);
background-size: cover;
background-repeat: no-repeat;
text-align: center;
}
.container {
background: rgba(255, 255, 255, 0.1);
border: 2px solid rgba(255, 255, 255, 0.7);
border-radius: 6px;
width: 500px;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6);
padding-bottom: 30px;
margin: 0 auto;
text-align: center;
margin-top: 100px;
}
h1 {
color: orange;
font-size: 60px;
}
p {
color: white;
font-size: 30px;
font-weight: bold;
}
#message-el {
font-style: italic;
}
button {
color: #016f32;
background-color: orange;
width: 170px;
font-size: 18px;
padding: 5px 20px;
text-transform: uppercase;
font-weight: bold;
border-radius: 2px;
border: none;
margin-bottom: 2px;
margin-top: 2px;
}
@media (max-width: 600px) {
.container {
margin-top: 30px;
}
}