-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (75 loc) · 1.54 KB
/
style.css
File metadata and controls
87 lines (75 loc) · 1.54 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
body {
font-family: 'Open Sans', sans-serif;
}
.form-control {
background: none !important;
border-top: none !important;
border-left: none !important;
border-right: none !important;
border-radius: 1px !important;
color: white;
}
.form-control:focus {
border-color: white;
}
.btn {
border-radius: 1px !important;
}
.background-image {
min-height: 100vh;
min-width: 100vw;
background-image: url('https://cdn-images-1.medium.com/max/1024/1*wzEf4qVNT7mUeMIeQWTJbg.jpeg');
background-size: cover;
background-position: center;
position: fixed;
z-index: -1;
}
.background-image__overlay {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: #272424;
opacity: 0.9;
z-index: 1;
}
.card {
border-radius: 1px !important;
height: 100%;
}
.card-title {
color: black;
}
.card-text {
color: grey;
}
.card-inner {
padding: 1.25rem;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.profile-details {
height: 100%;
}
.list-group-item:first-child, .list-group-item:last-child {
border-radius: 1px !important;
}
@media (max-width: 575px) {
#profile {
text-align: center;
}
#search-form, #alert-container {
padding-left: 15px;
padding-right: 15px;
}
.profile-details {
margin-top: 1rem;
margin-bottom: 1rem;
}
.search-btn {
margin-top: 1rem;
}
}