-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (54 loc) · 1.43 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
html,
body {
height: 100%;
width: 100%;
}
.jumbotron {
background-image: url("https://d33wubrfki0l68.cloudfront.net/590398ae9a27fec27fdac9450c0738d409cc84ff/c6bb7/static/2b5773beca118974180168ada813ba7b/an-introduction-to-low-level-programming.jpg");
background-size: cover;
background-repeat: no-repeat;
color: white;
}
#cardContainer {
display: flex;
flex-flow: row wrap;
justify-content: center;
}
.navbar {
background: #712cf9 !important;
margin-bottom: 20px;
}
.nav-link {
color: white !important;
transition: color 0.25s !important;
}
.nav-link:hover {
color: rgb(0, 0, 0) !important;
}
.navbar-brand {
color: rgb(0, 0, 0) !important;
font-weight: bold !important;
}
.btn.btn-primary {
background-color: #712cf9 !important;
/* border-color: black !important; */
border-radius: 10px;
border-style: solid;
}
.btn.btn-primary:hover {
background-color: rgb(13, 92, 13) !important;
}
.card {
border-radius: 4px;
background: #e4e1e1d7;
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08), 0 0 6px rgba(0, 0, 0, 0.05);
transition: 0.3s transform cubic-bezier(0.155, 1.105, 0.295, 1.12),
0.3s box-shadow,
0.3s -webkit-transform cubic-bezier(0.155, 1.105, 0.295, 1.12);
padding: 14px 80px 18px 36px;
cursor: pointer;
}
.card:hover {
transform: scale(1.05);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
}