-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
127 lines (107 loc) · 1.79 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
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
body {
background-color: #1a1a1a;
color: #f2f2f2;
font-family: "Courier New", monospace;
text-align: center;
margin: 0;
padding-left: 0;
padding-right: 0;
}
h1 {
justify-content: center;
color: #ffffff;
font-size: 2.5em;
margin-top: 0;
}
h2 {
justify-content: center;
margin: 0 auto;
padding: 0;
}
.nav {
position: static;
justify-content: center;
}
.nav li {
display: inline-block;
line-height: 1.6;
white-space: nowrap;
}
p {
font-size: 1.0em;
line-height: 1.5;
}
a {
color: #ffffff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.project-container {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.project {
margin: 10px;
width: 30%;
background-color: #2e2e2e;
border-radius: 10px;
overflow: hidden;
}
.project img {
max-width: 100%;
max-height: 200px;
}
.project h3 {
margin-top: 10px;
font-size: 1.2em;
font-weight: bold;
text-transform: uppercase;
}
.project p {
margin: 10px;
font-size: 0.9em;
}
.ethics-container {
padding-top: 30px;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.ethics {
align-items: center;
margin: 10px;
width: 90%;
background-color: #2e2e2e;
border-radius: 10px;
}
.ethics img {
max-width: 100%;
max-height: 200px;
}
.ethics h3 {
margin-top: 10px;
font-size: 1.2em;
font-weight: bold;
text-transform: uppercase;
}
.ethics h4 {
text-align: left;
margin: 10px;
font-size: 1.1em;
font-weight: bold;
text-transform: uppercase;
}
.ethics p {
text-align: left;
margin: 10px;
padding: 10px;
font-size: 1.1em;
}