-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.css
107 lines (90 loc) · 2.09 KB
/
about.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
body{
background: #EDF2F5;
color: #130933;
font-family: Raleway;
}
.navbar-default{
background: #28237A;
border-color: #878ea3;
}
.navbar-default .navbar-nav>li>a{
margin-top: 20px;
color: white;
}
.navbar-default .navbar-brand{
margin-top: 20px;
color: white;
}
.navbar-default .navbar-nav>li>a:hover {
background-color: white;
color: grey;
}
.navbar-default .navbar-brand:hover{
background-color: white;
color: grey;
}
.navbar-default .navbar-nav .navbar-right>li>a{
margin-top: 20px;
color: white;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
max-width: 300px;
margin: auto;
text-align: center;
}
.title {
color: grey;
font-size: 18px;
}
button {
border: none;
outline: 0;
display: inline-block;
padding: 8px;
color: white;
background-color: #000;
text-align: center;
cursor: pointer;
width: 100%;
font-size: 18px;
}
a {
text-decoration: none;
font-size: 22px;
color: black;
}
button:hover, a:hover {
opacity: 0.7;
}
.jumbotron{
box-shadow: 0px, 8px, 16px, 24px rgba(0,0,0,0.5);
background: #B7E6E8;
color: #161140;
}
#myBtn {
display: none; /* Hidden by default */
position: fixed; /* Fixed/sticky position */
bottom: 20px; /* Place the button at the bottom of the page */
right: 30px; /* Place the button 30px from the right */
z-index: 99; /* Make sure it does not overlap */
border: none; /* Remove borders */
outline: none; /* Remove outline */
background-color: #22804F; /* Set a background color */
color: white; /* Text color */
cursor: pointer; /* Add a mouse pointer on hover */
padding: 10px; /* Some padding */
border-radius: 10px; /* Rounded corners */
font-size: 18px; /* Increase font size */
}
#myBtn:hover {
background-color: #555; /* Add a dark-grey background on hover */
}
.footer {
left: 0;
bottom: 0;
width: 100%;
background-color: #28237A;
color: white;
text-align: center;
}