-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
223 lines (208 loc) · 4.6 KB
/
Copy pathindex.css
File metadata and controls
223 lines (208 loc) · 4.6 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
scroll-padding-top: 1px;
}
body {
background-color: #f4f4f4;
color: #333;
font-family: 'Times New Roman', serif;
line-height: 1.5;
}
/* Nav Bar Styles */
.container {
width: auto;
margin: auto;
overflow: hidden;
}
header {
background-color: #24252a;
padding: 20px 0;
position: sticky;
top: 0;
z-index: 1000;
}
header .container {
display: flex;
justify-content: space-between;
align-items: center;
width: 80%;
margin: auto;
}
.title {
color: white;
margin: 0;
padding-left: 20px;
font-size: 50px;
font-weight: 600;
}
.nav-links {
list-style: none;
margin: 0;
padding: 0;
}
.nav-links li {
display: inline-block;
padding: 0 20px
}
.nav-links li a {
color: white;
text-decoration: none;
font-size: 23px;
padding: 5px 10px;
font-weight: 450;
}
.nav-links li a:hover {
background-color:#434345 ;
border-radius: 5px;
}
/* Nav Bar Styles */
/* Main Styles */
main {
max-width: 2000px;
margin: 25px auto;
}
/* Main Styles */
/* Section Styles / Article Styles */
main section {
background-color: white;
border-radius: 10px;
margin-bottom: 40px;
padding: 20px 25px;
scroll-margin-top: 120px;
}
main section h3 {
color: #555;
margin-top: 0;
margin-bottom: 10px;
font-weight: 600;
font-size: 25px;
}
main section h2 {
color: #444;
text-align: center;
margin-top: 0;
margin-bottom: 10px;
font-size: 30px;
}
main section p, .bullet {
margin-bottom: 10px;
font-size: 20px;
}
/* Section Styles / Article Styles */
/* Introduction Styles */
.section-i {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.intro-text {
flex: 1;
margin-right: 20px;
}
.intro-image {
text-align: center;
}
.intro-image img {
max-width: 500px;
height: auto;
border-radius: 5px;
display: block;
}
/* Introduction Styles */
/* Application Styles */
.rowwrap {
height: auto;
width: auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
text-align: center;
}
.user {
background-color: white;
border: 2px solid #ccc;
border-radius: 10px;
margin: 15px;
width: 450px;
height: auto;
}
.user h3 {
margin-bottom: 10px;
}
.user p {
padding: 10px;
font-size: 18px;
margin: 0px;
}
.user img {
width: 100%;
height: 265px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.discussionP
{
font-size: 28px;
}
/* Application use-case Styles */
.usecase-div, .critical-div, .recommendations-div, .ethics-div {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.use-case, .critical-case, .recommendations-case, .ethics-case {
background: white;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
margin: 20px;
margin-top: 0;
margin-bottom:10px;
color: #333;
font-size: 16px;
flex: 1;
}
.use-case h3, .critical-case h3 , .recommendations-case h3, .ethics-case h3 {
margin-top: 0;
text-align: center;
}
.recommendations-case li, .critical-case li, .use-case li, .ethics-case li {
margin-left:10px;
font-size: 20px;
}
.more-info {
display: inline-block;
margin-top: 10px;
padding: 10px 20px;
background-color: #24252a;
color: white;
text-decoration: none;
border-radius: 10px;
font-size: 16px;
}
.more-info:hover {
background-color: #434345;
}
/* Application use-case Styles */
/* Ethical Analysis Styles */
.ethical-diagram {
display: block;
margin: 20px auto;
max-width: 750px;
height: auto;
border-radius: 10px;
}
.ethics-case img {
width: 100%;
height: auto;
border-radius: 5px;
margin-top: 10px;
display: block;
}
/* Ethical Analysis Styles */