-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (68 loc) · 1.17 KB
/
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
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
.jumbotron {
background: white;
}
.mission-container {
position: relative;
background: #1abc9c;
width: 300px;
min-height: 200px;
margin: 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
box-shadow: 1px 1px 20px -10px black;
}
.btn-primary {
position: absolute;
bottom: 0px;
left: 0px;
width: 100%;
background: black;
border-radius: 0px;
padding: 8px 16px;
border: 0px solid white;
}
.btn-primary:hover {
background: orange;
}
.is-visible {
opacity: 0;
display: none;
}
.btn-success {
border-radius: 0px;
padding: 8px 16px;
border: 0px solid white;
background: #1abc9c;
}
.btn-success:hover {
box-shadow: 0px 1px 40px -20px black;
background: black;
transform: translateX(5px);
}
.btn-primary:focus {
border: 1px solid transparent;
}
.jumbotron > img {
width: 300px;
}
.sub-container {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 100px;
}
.lead {
color: white;
}
.button-clicked {
background: orange !important;
}
.button-clicked:after {
content: " Click to hide";
display: block;
font-size: 0.8em;
}