forked from SLAM-Dunk-Prometheus/github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
153 lines (128 loc) · 2.31 KB
/
style.css
File metadata and controls
153 lines (128 loc) · 2.31 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
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
144
145
146
147
148
149
150
151
152
153
body {
font-family: 'Noto Sans', sans-serif;
}
.hero-body {
padding: 3rem 1.5rem;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.publication-title {
font-family: 'Google Sans', sans-serif;
font-size: 2.8rem;
font-weight: 700;
margin-bottom: 1rem;
color: white;
}
.publication-subtitle {
font-size: 1.3rem;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 2rem;
}
.publication-authors {
font-size: 1.1rem;
margin-bottom: 0.5rem;
color: white;
}
.author-block {
display: inline-block;
margin: 0 0.3rem;
}
.publication-links {
margin-top: 1.5rem;
}
.publication-links .button {
margin: 0.3rem;
transition: transform 0.2s;
}
.publication-links .button:hover {
transform: translateY(-2px);
}
.section {
padding: 3rem 1.5rem;
}
.container {
max-width: 1000px;
}
h2.title {
font-size: 2rem;
font-weight: 700;
margin-bottom: 1.5rem;
color: #363636;
}
.content {
font-size: 1.1rem;
line-height: 1.8;
}
.image-container {
margin: 2rem 0;
text-align: center;
}
.image-container img {
max-width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.video-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
max-width: 100%;
margin: 2rem 0;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.video-container video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 8px;
}
.module-card {
background: #f8f9fa;
padding: 2rem;
border-radius: 12px;
margin-bottom: 1.5rem;
border-left: 4px solid #667eea;
transition: transform 0.2s, box-shadow 0.2s;
}
.module-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.module-card h3 {
color: #667eea;
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1rem;
}
.demo-placeholder {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
border: 2px dashed #667eea;
border-radius: 8px;
padding: 4rem 2rem;
text-align: center;
margin: 2rem 0;
}
.demo-placeholder p {
color: #667eea;
font-size: 1.2rem;
font-weight: 500;
}
footer {
padding: 2rem;
background-color: #f5f5f5;
text-align: center;
}
.tag-container {
margin: 1rem 0;
}
.tag {
margin: 0.2rem;
}
.panel-image {
max-width: 70%;
height: auto;
}