-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathprofilepage.css
More file actions
84 lines (78 loc) · 1.39 KB
/
profilepage.css
File metadata and controls
84 lines (78 loc) · 1.39 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
body{
font-family: 'Merriweather', serif;
box-sizing: border-box;
margin: 0%;
padding: 0%;
background-color: #fbf4e2;
}
a {
text-decoration: none;
color: #463C74;
}
.navbar {
background-color: #fbf4e2;
margin-bottom: 30px;
padding: 20px;
font-size: 18px;
}
.navbar a:hover {
cursor: pointer;
color: #b4d51e;
}
.navbar a {
color: #463C74;
text-decoration: none;
}
.btn {
font-size: 15px;
padding-left: 15px;
padding-right: 15px;
background-color: #b4d51e;
}
.btn:hover,
.btn:focus {
color: #fff;
background-color: #463C74;
border-color: #463C74;
}
.card {
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-clip: border-box;
border: 0 solid #ccc;
border-radius: .25rem;
box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);
}
.card-body {
margin: 10px;
flex: 1 1 auto;
min-height: 1px;
padding: 1rem;
}
.gutters-sm {
margin-right: -8px;
margin-left: -8px;
}
.gutters-sm>.col, .gutters-sm>[class*=col-] {
padding-right: 8px;
padding-left: 8px;
}
.mb-3, .my-3 {
margin-bottom: 1rem!important;
}
.bg-gray-300 {
background-color: #e2e8f0;
}
.h-100 {
height: 100%!important;
}
.shadow-none {
box-shadow: none!important;
}
.footer{
background-color: #FBF4E2;
padding: 20px;
}