-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
144 lines (129 loc) · 2.31 KB
/
style.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
/* notification */
.notification {
margin: 0;
overflow: hidden;
background-color: #333;
/* position: fixed;
bottom: 0; */
width: 100%;
}
.notification a {
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.notification a:hover {
background: #f1f1f1;
color: black;
}
/* notification */
/* logobar */
#logobar {
margin: 0px;
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
flex-direction: row;
}
.logoIcon {
margin: 15px;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.logoIcon img {
height: 45px;
width: 200px;
}
/* logobar */
/* script */
#script {
display: flex;
justify-content: center;
flex-wrap: wrap;
flex-direction: row;
/* margin-bottom: 80px; */ margin: 0;
}
.card {
margin: 15px;
display: flex;
flex-wrap: wrap;
width: 300px;
height: 350px;
border: grey 1px solid;
box-shadow: gray 2px 2px 3px;
border-radius: 15px;
}
.card img {
width: 100%;
height: 250px;
border-radius: 8px 8px 0px 0px;
margin-bottom: 13px;
}
.cardText {
height: 100px;
margin-left: 10px;
margin-bottom: 13px;
align-items: stretch;
}
/* script */
/* navbar */
#navbar {
margin: 0;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: rgba(180, 149, 149, 0.664);
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
border-radius: 10px;
background-color: rgba(60, 219, 140, 0.637);
}
#me {
background-color: rgba(60, 219, 140, 0.637);
}
/* navbar */
/* pagination menu */
.pagination-menu {
display: flex;
justify-content: center;
margin: 0;
}
.pagination-menu button {
all: inherit;
color: black;
float: left;
padding: 8px 16px;
text-decoration: none;
}
.pagination-menu button.active {
background-color: #4caf50;
color: white;
border-radius: 5px;
}
.pagination-menu button:hover:not(.active) {
background-color: #ddd;
border-radius: 5px;
}
/* pagination menu */