-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (45 loc) · 774 Bytes
/
style.css
File metadata and controls
51 lines (45 loc) · 774 Bytes
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
/* Applying different styles for smaller screens */
@media screen and (max-width:600px){
.container {
max-width: 960px;
margin: 0 auto;
padding: 0 20px;
}
}
header {
background-color: #f2f2f2;
padding: 20px;
display: flex;
align-items: center;
}
header h1 {
flex: 1;
font-size: 36px;
margin: 0;
}
header img {
width: 200px;
height: 200px;
border-radius: 50%;
margin-left: 20px;
}
#papers {
background-color: #f9f9f9;
padding: 40px 20px;
}
.paper {
background-color: #fff;
padding: 20px;
margin-bottom: 20px;
border: 1px solid #ddd;
border-radius: 5px;
box-shadow: 0px 0px 10px #ddd;
}
.paper h3 {
font-size: 24px;
margin-top: