-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
96 lines (85 loc) · 1.63 KB
/
styles.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
/* css styles */
b,strong {font-weight: bold}
blockquote {
background-color: #ffffff;
border-left: 0px solid #ffffff;
margin: 0em 0.5em;
padding: 0em 0em;
padding-bottom: 2em;
text-align: center;
p{
font-style: italic;
font-size: 18px;
color: #5d5d5d;
}
}
.buttons {
background-color: #ffffff;
margin: 0em 0;
padding: 0em 0em;
font-size: 18px;
color: secondary;
text-align: center;
}
.mytitle {
margin-bottom: 0px;
text-align: center;
padding: 0em 0em;
padding-bottom: 1em;
p{
font-size: 32px;
font-weight: bold;
color: #333;
}
}
.thesis-page-image {
display: block;
width: 100%;
height: calc(100vw / 4);
max-height: calc(100vw / 4);
object-fit: cover;
}
.whoami-page-image {
display: block;
width: 100%;
height: calc(100vw / 7);
max-height: calc(100vw / 7);
object-fit: cover;
}
.card {
float: left;
display: block;
border: 1px solid #ddd;
border-radius: 5px;
box-shadow: 0 8px 10px rgba(0,0,0,0.1);
overflow: hidden;
width: 250px;
height: 400px;
max-width: 250px;
margin: 16px auto;
margin-right: 16px;
text-decoration: none;
color: inherit;
}
.card-image {
width: 100%;
height: 150px;
max-height: 150px;
object-fit: cover;
object-position: center;
background-size: cover;
background-position: center;
}
.card-content {
padding: 10px;
text-align: left;
margin-top: -10px;
vertical-align: top;
}
.card-date {
position: absolute; /* Position the date absolutely within the card */
bottom: 5px;
right: 10px;
margin-top: -10px;
font-size: 15px;
}