-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmyStyle.css
More file actions
110 lines (93 loc) · 1.91 KB
/
Copy pathmyStyle.css
File metadata and controls
110 lines (93 loc) · 1.91 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
body {
background: rgb(239, 247, 255);
background-repeat:no-repeat;
background-size: 100% 100%;
font-family: Palatino;
}
#menu {
border-radius: 4px;
-webkit-align-content: center;
align-content: center;
}
.card-img-top{
border-top-right-radius: 4%;
border-top-left-radius: 4%;
margin-bottom: 30px;
}
.card{
overflow: auto;
margin: 3vh 3vw;
border-radius: 4%;
padding-bottom: 25px;
background: rgba(163, 171, 184, 0.1);
box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.55);
}
.card:hover{
background: rgba(163, 171, 184, 0.05);
box-shadow: 1px 9px 30px 4px rgba(0, 0, 0, 0.45);
}
/* Activate if the bold text is not wanted
.card-text{
font-weight: normal;
}
*/
ul {
display: flex;
flex-wrap: wrap;
-webkit-align-content: center;
align-content: center;
list-style-type: none;
padding: 25px 6.18vw 35px;
}
li {
box-sizing: border-box;
list-style: none;
color: rgba(5, 15, 45, 0.9);
font-size: 85%;
}
li:hover {
box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.36);
}
#menu a {
font-size: 200%;
text-align: center;
color: transparent;
border-collapse: separate;
font-family: Palatino;
margin: auto;
}
h2 {
font-weight: bold;
color: rgba(63, 58, 55, 0.9);
margin-bottom: 15px;
}
.navbar{
position: -webkit-sticky; /* Safari */
position: sticky;
top: 0;
}
#menu a:link {
color: black;
text-decoration: none;
font-weight: bold;
}
#menu a:visited {
color: black;
text-decoration: none;
font-weight: bold;
}
#menu a:hover {
color: rgb(0, 0, 5);
text-decoration: none;
font-weight: bold;
}
#menu a:active {
color: black;
text-decoration: underline;
background: rgba(163, 171, 184, 0.1);
box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.19);
font-weight: bold;
}
.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
border-color: rgba(63, 258, 155, 0.4);
}