diff --git a/build.gradle.kts b/build.gradle.kts index e79d69b..887d19b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -146,7 +146,7 @@ tasks { } dokka { - outputFormat = "html" + outputFormat = "gfm" outputDirectory = "$projectDir/docs" configuration { diff --git a/docs/bitly-shorten/alltypes/index.html b/docs/bitly-shorten/alltypes/index.html deleted file mode 100644 index 0f4c545..0000000 --- a/docs/bitly-shorten/alltypes/index.html +++ /dev/null @@ -1,39 +0,0 @@ - -
- -Bitly Shortener for Kotlin/Java
-Bitly Shortener for Kotlin/Java
-A simple implementation of the link shortening (bitlinks) abilities of the Bitly v4 API.
-
-net.thauvin.erik.bitly- |
-- | -
Bitlinks(accessToken: String)
-Bitlinks methods implementation.
-See the Bitly API for more information.
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/clicks.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/clicks.html deleted file mode 100644 index 548380e..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/clicks.html +++ /dev/null @@ -1,32 +0,0 @@ - - - -@JvmOverloads fun clicks(bitlink: String, unit: Units = Units.DAY, units: Int = -1, size: Int = 50, unit_reference: String = Constants.EMPTY, toJson: Boolean = false): String
(source)
-Returns the click counts for a specified Bitlink.
-See the Bitly API for more information.
-
-units
- An integer representing the time units to query data for. pass -1 to return all units available.
-size
- The quantity of items to be be returned.
-unit_reference
- An ISO-8601 timestamp, indicating the most recent time for which to pull metrics.
-Will default to current time.
-toJson
- Returns the full JSON response if true
Return
-The click counts or JSON response object.
@JvmOverloads fun create(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array<String> = emptyArray(), deeplinks: Array<Map<String, String>> = emptyArray(), long_url: String, toJson: Boolean = false): String
(source)
-Converts a long url to a Bitlink and sets additional parameters.
-See the Bit.ly API for more information.
-
-toJson
- Returns the full JSON response if true
Oaran
-long_url The long URL.
Return
-The shorten URL or JSON response, or on error, an empty string/JSON object.
@JvmOverloads fun expand(bitlink_id: String, toJson: Boolean = false): String
(source)
-Expands a Bitlink.
-See the Bit.ly API for more information.
-
-toJson
- Returns the full JSON response if true
Return
-The long URL or JSON response, or on error, an empty string/JSON object.
open class Bitlinks
(source)
-Bitlinks methods implementation.
-See the Bitly API for more information.
-
-<init>- |
-
- Bitlinks methods implementation. -Bitlinks(accessToken: String) |
-
-clicks- |
-
- Returns the click counts for a specified Bitlink. -fun clicks(bitlink: String, unit: Units = Units.DAY, units: Int = -1, size: Int = 50, unit_reference: String = Constants.EMPTY, toJson: Boolean = false): String |
-
-create- |
-
- Converts a long url to a Bitlink and sets additional parameters. -fun create(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array<String> = emptyArray(), deeplinks: Array<Map<String, String>> = emptyArray(), long_url: String, toJson: Boolean = false): String |
-
-expand- |
-
- Expands a Bitlink. -fun expand(bitlink_id: String, toJson: Boolean = false): String |
-
-shorten- |
-
- Shortens a long URL. -fun shorten(long_url: String, group_guid: String = Constants.EMPTY, domain: String = Constants.EMPTY, toJson: Boolean = false): String |
-
@JvmOverloads fun shorten(long_url: String, group_guid: String = Constants.EMPTY, domain: String = Constants.EMPTY, toJson: Boolean = false): String
(source)
-Shortens a long URL.
-See the Bit.ly API for more information.
-
-toJson
- Returns the full JSON response if true
Return
-The short URL or JSON response, or on error, the long_url or an empty JSON object.
Bitly(accessToken: String)
-Creates a new instance using an API Access Token.
-
-accessToken
- The API access token.
Bitly(properties: Properties, key: String = Constants.ENV_ACCESS_TOKEN)
-Creates a new instance using a Properties and Property Key.
-
-key
- The property key containing the API Access Token.
Bitly(propertiesFilePath: Path, key: String = Constants.ENV_ACCESS_TOKEN)
-Creates a new instance using a Properties File Path and Property Key.
-
-propertiesFilePath
- The properties file path.
-key
- The property key containing the API Access Token.
Bitly(propertiesFile: File, key: String = Constants.ENV_ACCESS_TOKEN)
-Creates a new instance using a Properties File and Property Key.
-
-propertiesFile
- The properties file.
-key
- The property key containing the API Access Token.
Bitly()
-Creates new instance.
-Constructor
-Creates new instance.
var accessToken: String
(source)
-The API access token.
-See Generic Access Token or -Authentication.
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/bitlinks.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/bitlinks.html deleted file mode 100644 index f241281..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/bitlinks.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -fun bitlinks(): Bitlinks
(source)
-Bitlinks accessor.
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/call.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/call.html deleted file mode 100644 index a60c55f..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/call.html +++ /dev/null @@ -1,24 +0,0 @@ - - - -@JvmOverloads fun call(endPoint: String, params: Map<String, String> = emptyMap(), method: Methods = Methods.POST): String
(source)
-Executes an API call.
-
-endPoint
- The REST endpoint. (eg. https://api-ssl.bitly.com/v4/shorten
)
-params
- The request parameters kev/value map.
-method
- The submission Method.
Return
-The response (JSON) from the API.
@NotNull fun getAccessToken(): java.lang.String
-The API access token.
-See Generic Access Token or -Authentication.
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/index.html deleted file mode 100644 index 628311b..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/index.html +++ /dev/null @@ -1,69 +0,0 @@ - - - -open class Bitly
(source)
-A simple implementation of the Bitly Shortner API v4.
-
-<init>- |
-
- Creates a new instance using an API Access Token. -Bitly(accessToken: String)
-Creates a new instance using a Properties and Property Key. -Bitly(properties: Properties, key: String = Constants.ENV_ACCESS_TOKEN)
-Creates a new instance using a Properties File Path and Property Key. -Bitly(propertiesFilePath: Path, key: String = Constants.ENV_ACCESS_TOKEN)
-Creates a new instance using a Properties File and Property Key. -Bitly(propertiesFile: File, key: String = Constants.ENV_ACCESS_TOKEN)
-Creates new instance. -Bitly() |
-
-accessToken- |
-
- The API access token. -var accessToken: String |
-
-bitlinks- |
-
- Bitlinks accessor. -fun bitlinks(): Bitlinks |
-
-call- |
-
- Executes an API call. -fun call(endPoint: String, params: Map<String, String> = emptyMap(), method: Methods = Methods.POST): String |
-
@<?> fun setAccessToken(@NotNull p: java.lang.String): void
-The API access token.
-See Generic Access Token or -Authentication.
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-a-p-i_-b-a-s-e_-u-r-l.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-a-p-i_-b-a-s-e_-u-r-l.html deleted file mode 100644 index 67dc738..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-a-p-i_-b-a-s-e_-u-r-l.html +++ /dev/null @@ -1,17 +0,0 @@ - - - -const val API_BASE_URL: String
(source)
-The Bitly API base URL.
-Value
-https://api-ssl.bitly.com/v4
Constants
static class Constants
-
-
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y.html
deleted file mode 100644
index cfbba2a..0000000
--- a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y.html
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-const val EMPTY: String
(source)
-Empty String.
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y_-j-s-o-n.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y_-j-s-o-n.html deleted file mode 100644 index 348a296..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y_-j-s-o-n.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -const val EMPTY_JSON: String
(source)
-Empty JSON Object.
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.html deleted file mode 100644 index f138b4e..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.html +++ /dev/null @@ -1,17 +0,0 @@ - - - -const val ENV_ACCESS_TOKEN: String
(source)
-The API access token environment variable.
-Value
-BITLY_ACCESS_TOKEN
open class Constants
(source)
-Constants for this package.
-
-API_BASE_URL- |
-
- The Bitly API base URL. -const val API_BASE_URL: String |
-
-EMPTY- |
-
- Empty String. -const val EMPTY: String |
-
-EMPTY_JSON- |
-
- Empty JSON Object. -const val EMPTY_JSON: String |
-
-ENV_ACCESS_TOKEN- |
-
- The API access token environment variable. -const val ENV_ACCESS_TOKEN: String |
-
DELETE
(source)
-
-
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-g-e-t.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-g-e-t.html
deleted file mode 100644
index 1f8b253..0000000
--- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-g-e-t.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-GET
(source)
-
-
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h.html
deleted file mode 100644
index c5385f5..0000000
--- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-PATCH
(source)
-
-
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t.html
deleted file mode 100644
index 6a29437..0000000
--- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-POST
(source)
-
-
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/index.html
deleted file mode 100644
index cc99cdf..0000000
--- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/index.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-enum class Methods
(source)
-HTTP methods.
-
-DELETE- |
-- | -
-GET- |
-- | -
-PATCH- |
-- | -
-POST- |
-- | -
DAY
(source)
-
-
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-h-o-u-r.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-h-o-u-r.html
deleted file mode 100644
index 963a6bc..0000000
--- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-h-o-u-r.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-HOUR
(source)
-
-
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e.html
deleted file mode 100644
index e488638..0000000
--- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-MINUTE
(source)
-
-
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h.html
deleted file mode 100644
index bcdb288..0000000
--- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-MONTH
(source)
-
-
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-w-e-e-k.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-w-e-e-k.html
deleted file mode 100644
index 3b82a76..0000000
--- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-w-e-e-k.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-WEEK
(source)
-
-
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/index.html
deleted file mode 100644
index 1781d14..0000000
--- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/index.html
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
-enum class Units
(source)
-Units of time.
-
-MINUTE- |
-- | -
-HOUR- |
-- | -
-DAY- |
-- | -
-WEEK- |
-- | -
-MONTH- |
-- | -
Companion
-
-
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/call.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/call.html
deleted file mode 100644
index 69df60b..0000000
--- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/call.html
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-@JvmOverloads @NotNull fun call(@NotNull accessToken: java.lang.String, @NotNull endPoint: java.lang.String, @NotNull params: java.util.Map<java.lang.String, ? extends java.lang.Object>, @NotNull method: Methods): java.lang.String
@JvmOverloads @NotNull fun call(@NotNull accessToken: java.lang.String, @NotNull endPoint: java.lang.String, @NotNull params: java.util.Map<java.lang.String, ? extends java.lang.Object>): java.lang.String
@JvmOverloads @NotNull fun call(@NotNull accessToken: java.lang.String, @NotNull endPoint: java.lang.String): java.lang.String
-Executes an API call.
-
-accessToken
- The API access token.
-endPoint
- The REST endpoint. (eg. https://api-ssl.bitly.com/v4/shorten
)
-params
- The request parameters kev/value map.
-method
- The submission Method.
Return
-The response (JSON) from the API.
@NotNull fun getLogger(): java.util.logging.Logger
-The logger instance.
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/index.html deleted file mode 100644 index 53b30a3..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/index.html +++ /dev/null @@ -1,60 +0,0 @@ - - - -static class Companion
-
-call- |
-
- Executes an API call. -fun call(accessToken: java.lang.String, endPoint: java.lang.String, params: java.util.Map<java.lang.String, ? extends java.lang.Object>, method: Methods): java.lang.String - fun call(accessToken: java.lang.String, endPoint: java.lang.String, params: java.util.Map<java.lang.String, ? extends java.lang.Object>): java.lang.String - fun call(accessToken: java.lang.String, endPoint: java.lang.String): java.lang.String |
-
-getLogger- |
-
- The logger instance. -fun getLogger(): java.util.logging.Logger |
-
-isValidUrl- |
-
- Validates a URL. -fun isValidUrl($this$isValidUrl: java.lang.String): boolean |
-
-removeHttp- |
-
- Removes http(s) scheme from string. -fun removeHttp($this$removeHttp: java.lang.String): java.lang.String |
-
-toEndPoint- |
-
- Builds the full API endpoint URL using the Constants.API_BASE_URL. -fun toEndPoint($this$toEndPoint: java.lang.String): java.lang.String |
-
@<?> fun isValidUrl(@NotNull $this$isValidUrl: java.lang.String): boolean
-Validates a URL.
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/remove-http.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/remove-http.html deleted file mode 100644 index 381ac5e..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/remove-http.html +++ /dev/null @@ -1,14 +0,0 @@ - - - -@NotNull fun removeHttp(@NotNull $this$removeHttp: java.lang.String): java.lang.String
-Removes http(s) scheme from string.
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/to-end-point.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/to-end-point.html deleted file mode 100644 index 716cde2..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/to-end-point.html +++ /dev/null @@ -1,14 +0,0 @@ - - - -@NotNull fun toEndPoint(@NotNull $this$toEndPoint: java.lang.String): java.lang.String
-Builds the full API endpoint URL using the Constants.API_BASE_URL.
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/call.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/call.html deleted file mode 100644 index dc00163..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/call.html +++ /dev/null @@ -1,26 +0,0 @@ - - - -@JvmOverloads fun call(accessToken: String, endPoint: String, params: Map<String, Any> = emptyMap(), method: Methods = Methods.POST): String
(source)
-Executes an API call.
-
-accessToken
- The API access token.
-endPoint
- The REST endpoint. (eg. https://api-ssl.bitly.com/v4/shorten
)
-params
- The request parameters kev/value map.
-method
- The submission Method.
Return
-The response (JSON) from the API.
open class Utils
(source)
-Useful functions.
-
-logger- |
-
- The logger instance. -val logger: Logger |
-
-call- |
-
- Executes an API call. -fun call(accessToken: String, endPoint: String, params: Map<String, Any> = emptyMap(), method: Methods = Methods.POST): String |
-
-isValidUrl- |
-
- Validates a URL. -fun String.isValidUrl(): Boolean |
-
-removeHttp- |
-
- Removes http(s) scheme from string. -fun String.removeHttp(): String |
-
-toEndPoint- |
-
- Builds the full API endpoint URL using the Constants.API_BASE_URL. -fun String.toEndPoint(): String |
-
fun String.isValidUrl(): Boolean
(source)
-Validates a URL.
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/logger.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/logger.html deleted file mode 100644 index 55c5713..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/logger.html +++ /dev/null @@ -1,18 +0,0 @@ - - - -val logger: Logger
(source)
-The logger instance.
-Getter
-
The logger instance.
- - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/remove-http.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/remove-http.html deleted file mode 100644 index ae13bb2..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/remove-http.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -fun String.removeHttp(): String
(source)
-Removes http(s) scheme from string.
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/to-end-point.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/to-end-point.html deleted file mode 100644 index f867652..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/to-end-point.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -fun String.toEndPoint(): String
(source)
-Builds the full API endpoint URL using the Constants.API_BASE_URL.
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/index.html deleted file mode 100644 index 1234ab7..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/index.html +++ /dev/null @@ -1,65 +0,0 @@ - - - -
-Bitlinks- |
-
- Bitlinks methods implementation. -open class Bitlinks |
-
-Bitly- |
-
- A simple implementation of the Bitly Shortner API v4. -open class Bitly |
-
-Constants- |
-
- Constants for this package. -open class Constants |
-
-Methods- |
-
- HTTP methods. -enum class Methods |
-
-Units- |
-
- Units of time. -enum class Units |
-
-Utils- |
-
- Useful functions. -open class Utils |
-
The page has moved to this page
- - diff --git a/docs/style.css b/docs/style.css deleted file mode 100644 index 914be69..0000000 --- a/docs/style.css +++ /dev/null @@ -1,283 +0,0 @@ -@import url(https://fonts.googleapis.com/css?family=Open+Sans:300i,400,700); - -body, table { - padding:50px; - font:14px/1.5 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif; - color:#555; - font-weight:300; - margin-left: auto; - margin-right: auto; - max-width: 1440px; -} - -.keyword { - color:black; - font-family:Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal; - font-size:12px; -} - -.symbol { - font-family:Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal; - font-size:12px; -} - -.identifier { - color: darkblue; - font-size:12px; - font-family:Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal; -} - -h1, h2, h3, h4, h5, h6 { - color:#222; - margin:0 0 20px; -} - -p, ul, ol, table, pre, dl { - margin:0 0 20px; -} - -h1, h2, h3 { - line-height:1.1; -} - -h1 { - font-size:28px; -} - -h2 { - color:#393939; -} - -h3, h4, h5, h6 { - color:#494949; -} - -a { - color:#258aaf; - font-weight:400; - text-decoration:none; -} - -a:hover { - color: inherit; - text-decoration:underline; -} - -a small { - font-size:11px; - color:#555; - margin-top:-0.6em; - display:block; -} - -.wrapper { - width:860px; - margin:0 auto; -} - -blockquote { - border-left:1px solid #e5e5e5; - margin:0; - padding:0 0 0 20px; - font-style:italic; -} - -code, pre { - font-family:Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal; - color:#333; - font-size:12px; -} - -pre { - display: block; -/* - padding:8px 8px; - background: #f8f8f8; - border-radius:5px; - border:1px solid #e5e5e5; -*/ - overflow-x: auto; -} - -table { - width:100%; - border-collapse:collapse; -} - -th, td { - text-align:left; - vertical-align: top; - padding:5px 10px; -} - -dt { - color:#444; - font-weight:700; -} - -th { - color:#444; -} - -img { - max-width:100%; -} - -header { - width:270px; - float:left; - position:fixed; -} - -header ul { - list-style:none; - height:40px; - - padding:0; - - background: #eee; - background: -moz-linear-gradient(top, #f8f8f8 0%, #dddddd 100%); - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#dddddd)); - background: -webkit-linear-gradient(top, #f8f8f8 0%,#dddddd 100%); - background: -o-linear-gradient(top, #f8f8f8 0%,#dddddd 100%); - background: -ms-linear-gradient(top, #f8f8f8 0%,#dddddd 100%); - background: linear-gradient(top, #f8f8f8 0%,#dddddd 100%); - - border-radius:5px; - border:1px solid #d2d2d2; - box-shadow:inset #fff 0 1px 0, inset rgba(0,0,0,0.03) 0 -1px 0; - width:270px; -} - -header li { - width:89px; - float:left; - border-right:1px solid #d2d2d2; - height:40px; -} - -header ul a { - line-height:1; - font-size:11px; - color:#999; - display:block; - text-align:center; - padding-top:6px; - height:40px; -} - -strong { - color:#222; - font-weight:700; -} - -header ul li + li { - width:88px; - border-left:1px solid #fff; -} - -header ul li + li + li { - border-right:none; - width:89px; -} - -header ul a strong { - font-size:14px; - display:block; - color:#222; -} - -section { - width:500px; - float:right; - padding-bottom:50px; -} - -small { - font-size:11px; -} - -hr { - border:0; - background:#e5e5e5; - height:1px; - margin:0 0 20px; -} - -footer { - width:270px; - float:left; - position:fixed; - bottom:50px; -} - -@media print, screen and (max-width: 960px) { - - div.wrapper { - width:auto; - margin:0; - } - - header, section, footer { - float:none; - position:static; - width:auto; - } - - header { - padding-right:320px; - } - - section { - border:1px solid #e5e5e5; - border-width:1px 0; - padding:20px 0; - margin:0 0 20px; - } - - header a small { - display:inline; - } - - header ul { - position:absolute; - right:50px; - top:52px; - } -} - -@media print, screen and (max-width: 720px) { - body { - word-wrap:break-word; - } - - header { - padding:0; - } - - header ul, header p.view { - position:static; - } - - pre, code { - word-wrap:normal; - } -} - -@media print, screen and (max-width: 480px) { - body { - padding:15px; - } - - header ul { - display:none; - } -} - -@media print { - body { - padding:0.4in; - font-size:12pt; - color:#444; - } -}