-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
120 lines (118 loc) · 3 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
/* Used to customsize link colours in various states*/
a:link {text-decoration: none;color: #2e6e9e;}
a:visited {text-decoration: none;color: #2e6e9e;}
a:hover {text-decoration: none;color: grey;}
a:active {text-decoration: none;color: #2e6e9e;}
/* Used to customize list bullet icons */
ul.a {list-style-type: circle;}
ul.b {list-style-type: disc;}
ol.c {list-style-type: upper-roman;}
ol.d {list-style-type: lower-alpha;}
/* Gives all html documents a standard size to work off*/
html {font-size: normal;}
body {
background-color: #fff1e0;
margin: 0 auto;
max-width: 100%;}
hr {
color:#9e2f50;
background-color: #9e2f50;
border-style: solid;
height: 2px;
margin: 0.5%;
border-top: 0;
}
.navbar_main
{
text-align: center;
font-size: 150%;
font-family: "Garamond", "Times New Roman", serif;
margin: 0px;
}
.navbar_sub_main
{
text-align: center;
font-size: 125%;
font-family: "Garamond", "Times New Roman", serif;
}
.container_centered
{
text-align: center;
font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
margin-right: 20px;
margin-left: 20px;
margin-bottom: 5px;
padding: 0px;
font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
line-height: 105%;
}
.container_main
{
margin-right: 20px;
margin-left: 20px;
margin-bottom: 5px;
padding: 0px;
font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
line-height: 105%;
}
/* Use regex to format all project showcase ids*/
div[id^='showcase']{margin-right: 3%;margin-left: 3%;}
.img-circle {border-radius: 50%;}
/* Used to format the buttons */
.project_button
{
background: none;
border:none;
padding:0!important;
font: inherit;
color:#2e6e9e;
/*border is optional*/
cursor: pointer;
text-decoration: none;
}
.project_button:hover
{
color:grey;
}
/* Fonts */
h1 {
text-align: center;
font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
font-size: 24px;
font-style: normal;
font-variant: normal;
font-weight: 500;
line-height: 26.4px;
}
h3 {
font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
font-size: 14px;
font-style: normal;
font-variant: normal;
font-weight: 500;
line-height: 15.4px;
}
p {
font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
font-size: 14px;
font-style: normal;
font-variant: normal;
font-weight: 400;
line-height: 20px;
}
blockquote {
font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
font-size: 21px;
font-style: normal;
font-variant: normal;
font-weight: 400;
line-height: 30px;
}
pre {
font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
font-size: 13px;
font-style: normal;
font-variant: normal;
font-weight: 400;
line-height: 18.5714px;
}