-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (35 loc) · 678 Bytes
/
style.css
File metadata and controls
41 lines (35 loc) · 678 Bytes
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
body {
background-image: url(./images/cristian-parciu-384621-unsplash.jpg);
background-size: cover;
}
.startup {
height: 100%;
color: #aaa;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.startup-text {
margin: 20px auto;
text-shadow: 3px 3px rgba(255, 255, 255, 0.2);
text-align: center;
}
.startup-button {
margin: 0 auto;
}
.find-out-button {
background-color: #ff7400;
color: #000;
border: 0 none;
font-size: 24px;
font-weight: bold;
padding: 5px 20px;
text-align: center;
text-decoration: none;
cursor: pointer;
}
.find-out-button:hover {
color: #fff;
background-color: #ab4d00;
}