Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added content/img/github-blue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/img/github.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
102 changes: 69 additions & 33 deletions content/style.css
Original file line number Diff line number Diff line change
@@ -1,24 +1,37 @@
@import url(http://fonts.googleapis.com/css?family=Droid+Sans|Droid+Sans+Mono|Gudea:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Droid+Sans|Droid+Sans+Mono|Open+Sans:400,600,700);

/*--------------------------------------------------------------------------
Formatting for F# code snippets
/*--------------------------------------------------------------------------
Formatting for F# code snippets
/*--------------------------------------------------------------------------*/

/* identifier */
/* strings --- and stlyes for other string related formats */
span.s { color:#E0E268; }
/* printf formatters */
span.pf { color:#E0C57F; }
/* escaped chars */
span.e { color:#EA8675; }

/* identifiers --- and styles for more specific identifier types */
span.i { color:#d1d1d1; }
/* string */
span.s { color:#d4b43c; }
/* type or module */
span.t { color:#43AEC6; }
/* function */
span.f { color:#e1e1e1; }
/* DU case or active pattern */
span.p { color:#4ec9b0; }

/* keywords */
span.k { color:#4e98dc; }
span.k { color:#FAB11D; }
/* comment */
span.c { color:#96C71D; }
span.c { color:#808080; }
/* operators */
span.o { color:#af75c1; }
/* numbers */
span.n { color:#96C71D; }
/* line number */
span.l { color:#80b0b0; }

/* mutable var or ref cell */
span.v { color:#d1d1d1; font-weight: bold; }
/* inactive code */
span.inactive { color:#808080; }
/* preprocessor */
Expand All @@ -27,7 +40,7 @@ span.prep { color:#af75c1; }
span.fsi { color:#808080; }

/* omitted */
span.omitted {
span.omitted {
background:#3c4e52;
border-radius:5px;
color:#808080;
Expand All @@ -46,7 +59,7 @@ table.pre pre {
padding:0px;
margin:0px;
border:none;
}
}
table.pre, pre.fssnip, pre {
line-height:13pt;
border:1px solid #d8d8d8;
Expand All @@ -58,7 +71,11 @@ table.pre, pre.fssnip, pre {
background-color:#212d30;
padding:10px;
border-radius:5px;
color:#d1d1d1;
color:#d1d1d1;
max-width: none;
}
pre.fssnip code {
font: 9pt 'Droid Sans Mono',consolas,monospace;
}
table.pre pre {
padding:0px;
Expand All @@ -75,12 +92,12 @@ table.pre td.lines {
width:30px;
}

/*--------------------------------------------------------------------------
/*--------------------------------------------------------------------------
Formatting for page & standard document content
/*--------------------------------------------------------------------------*/

body {
font-family: Gudea, serif;
font-family: 'Open Sans', serif;
padding-top: 0px;
padding-bottom: 40px;
}
Expand All @@ -93,6 +110,10 @@ pre {
.masthead {
overflow: hidden;
}
.masthead .muted a {
text-decoration:none;
color:#999999;
}
.masthead ul, .masthead li {
margin-bottom:0px;
}
Expand Down Expand Up @@ -133,13 +154,13 @@ td.title, thead {
/* Change font sizes for headings etc. */
#main h1 { font-size: 26pt; margin:10px 0px 15px 0px; font-weight:400; }
#main h2 { font-size: 20pt; margin:20px 0px 0px 0px; font-weight:400; }
#main h3 { font-size: 14pt; margin:15px 0px 0px 0px; font-weight:400; }
#main p { font-size: 12pt; margin:5px 0px 15px 0px; }
#main ul { font-size: 12pt; margin-top:10px; }
#main li { font-size: 12pt; margin: 5px 0px 5px 0px; }
#main h3 { font-size: 14pt; margin:15px 0px 0px 0px; font-weight:600; }
#main p { font-size: 11pt; margin:5px 0px 15px 0px; }
#main ul { font-size: 11pt; margin-top:10px; }
#main li { font-size: 11pt; margin: 5px 0px 5px 0px; }
#main strong { font-weight:700; }

/*--------------------------------------------------------------------------
/*--------------------------------------------------------------------------
Formatting for API reference
/*--------------------------------------------------------------------------*/

Expand All @@ -158,14 +179,38 @@ td.title, thead {
font-size:12pt;
margin:10px 0px 0px 0px;
}
/*--------------------------------------------------------------------------
Additional formatting for the homepage
.github-link {
float:right;
text-decoration:none;
}
.github-link img {
border-style:none;
margin-left:10px;
}
.github-link .hover { display:none; }
.github-link:hover .hover { display:block; }
.github-link .normal { display: block; }
.github-link:hover .normal { display: none; }

/*--------------------------------------------------------------------------
Links
/*--------------------------------------------------------------------------*/

#nuget {
h1 a, h1 a:hover, h1 a:focus,
h2 a, h2 a:hover, h2 a:focus,
h3 a, h3 a:hover, h3 a:focus,
h4 a, h4 a:hover, h4 a:focus,
h5 a, h5 a:hover, h5 a:focus,
h6 a, h6 a:hover, h6 a:focus { color : inherit; text-decoration : inherit; outline:none }

/*--------------------------------------------------------------------------
Additional formatting for the homepage
/*--------------------------------------------------------------------------*/

#nuget {
margin-top:20px;
font-size: 11pt;
padding:20px;
font-size: 11pt;
padding:20px;
}

#nuget pre {
Expand All @@ -178,12 +223,3 @@ td.title, thead {
color: #e0e0e0;
margin-top:15px;
}

/* Hide snippets on the home page snippet & nicely format table */
#hp-snippet td.lines {
display: none;
}
#hp-snippet .table {
width:80%;
margin-left:30px;
}
Loading