-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
81 lines (71 loc) · 2.97 KB
/
styles.css
File metadata and controls
81 lines (71 loc) · 2.97 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
body {
/* background-color: rgba(191, 248, 255, 0.35); */
color: black;
background-color: #e1ecf7;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='338' height='40.6' viewBox='0 0 1000 120'%3E%3Cg fill='none' stroke='%23222' stroke-width='2' stroke-opacity='0.06'%3E%3Cpath d='M-500 75c0 0 125-30 250-30S0 75 0 75s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 45c0 0 125-30 250-30S0 45 0 45s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 105c0 0 125-30 250-30S0 105 0 105s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 15c0 0 125-30 250-30S0 15 0 15s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500-15c0 0 125-30 250-30S0-15 0-15s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 135c0 0 125-30 250-30S0 135 0 135s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3C/g%3E%3C/svg%3E");
/* background by SVGBackgrounds.com */
}
.section-title {
text-align: center;
margin: 1.5rem auto; /* centers div and gives top and bottom margin */
}
#white-space-div {
height: 4rem;
}
.section-title + p {
background-color:white;
border:1px solid rgba(70, 70, 70, 0.9);
padding: .75rem 1.25rem;
}
.btn, ul > .list-group-item {
border:1px solid rgba(70, 70, 70, 0.9);
}
/*===========
Navbar
=============*/
/* match default bootstrap link color */
.custom-toggler {
border-color: #007bff;
}
.custom-toggler:hover {
border-color: rgba(0,86,179, 1);
}
/* match default bootstrap link color on hover*/
.custom-toggler .navbar-toggler-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,123,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.custom-toggler:hover .navbar-toggler-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,86,179, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
/*===========
Cards
=============*/
.card {
box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.3);
}
.card-img-top {
max-height: 500px;
}
.gif-portion {
width: 500px;
height: 500px;
display: none;
}
@media screen and (min-width: 575px) {
.gif-portion {
display: block;
}
.img-portion {
display: none;
}
}
/*===========
Lists
=============*/
:first-child.list-group-item {
border-top: none;
border-left: none;
border-right: none;
background: none;
font-weight: bold;
}