-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
153 lines (152 loc) · 2.36 KB
/
main.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
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
html *
{
font-family: Calibri;
}
body
{
margin: 0px;
}
h1, h2, h3, h4
{
margin: 0px;
font-family: Garamond;
}
img
{
height: 500px;
padding: 10px;
}
.banner
{
text-align: center;
background-image: url(./images/NewYorkSmall/DSC_4242.jpg);
background-color: #aaa;
background-position: 50% 45%;
background-size: cover;
margin-bottom: 30px;
}
.background_gradient
{
background-image: linear-gradient(transparent, rgba(255,255,255,0.3));
padding: 50px;
}
.banner_text_background
{
background-color: rgba(255,255,255,0.6);
padding: 20px;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}
p.banner_text
{
font-size: 1.1em;
}
.navigation
{
padding: 0px 30px;
text-align: center;
}
.navigation_container
{
border-style: solid none solid none;
border-color: #888;
border-width: 1px;
margin: 10px 0px;
}
.navigation_container a
{
display: inline-block;
width: 33.33%;
font-size: 1.2em;
color: #333;
text-decoration: none !important;
padding: 20px 0px;
}
.navigation_container a:hover
{
background-color: #fed;
}
.navigation_center
{
display: inline-block;
border-style: none solid;
border-color: #888;
border-width: 1px;
box-sizing: border-box;
}
.projects_list
{
padding: 10px;
text-align: left;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}
.projects_list h2.topic
{
border-bottom-style: solid;
border-bottom-color: black;
border-bottom-width: 1px;
padding-bottom: 3px;
margin-bottom: 15px;
margin-top: 20px;
font-family: Calibri, Sans Serif;
font-weight: 400;
}
.project_container
{
padding: 5px 0px;
}
.project_container p
{
color: #222;
font-size: 1.1em;
}
.project_title
{
text-align: center;
font-size: 1.5em;
margin-bottom: 5px;
}
.project_subtitle
{
text-align: center;
display: block;
font-size: 1.1em;
color: #333;
}
.side_scroller
{
overflow-x: scroll;
}
.side_scroller_content
{
display: flex;
margin: 0px -10px;
}
.project_desc_wrapper
{
display: flow-root;
background-color: #eee;
padding: 0em 1em;
margin: 10px;
}
.project_list_footer
{
margin: 30px 0px;
}
.project_list_footer span
{
display: block;
text-align: center;
font-size: 1.2em;
color: #333;
padding: 10px 0px;
}
.code {
padding: 2px;
color: #555;
border-radius: 2px;
background: #fefefe;
}