diff --git a/cli.html b/cli.html index b33abbba..4d547728 100644 --- a/cli.html +++ b/cli.html @@ -4,7 +4,7 @@ Fig CLI reference - + diff --git a/css/fig.css b/css/fig.css index 345a82cc..4d8a0281 100644 --- a/css/fig.css +++ b/css/fig.css @@ -158,10 +158,19 @@ a.btn:hover { } .strapline { - font-size: 40px; - display: block; - line-height: 1.2; - margin-top: 25px; - margin-bottom: 35px; + font-size: 30px; } +@media (min-width: 768px) { + .strapline { + font-size: 40px; + display: block; + line-height: 1.2; + margin-top: 25px; + margin-bottom: 35px; + } +} + +strong { + font-weight: 700; +} diff --git a/django.html b/django.html index 70dd0c14..57a9edb3 100644 --- a/django.html +++ b/django.html @@ -4,7 +4,7 @@ Getting started with Fig and Django - + diff --git a/env.html b/env.html index 8dc16585..cf1e30b5 100644 --- a/env.html +++ b/env.html @@ -4,7 +4,7 @@ Fig environment variables reference - + @@ -20,22 +20,22 @@

Fig uses Docker links to expose services' containers to one another. Each linked container injects a set of environment variables, each of which begins with the uppercase name of the container.

name_PORT
-Full URL, e.g. MYAPP_DB_1_PORT=tcp://172.17.0.5:5432

+Full URL, e.g. DB_1_PORT=tcp://172.17.0.5:5432

name_PORT_num_protocol
-Full URL, e.g. MYAPP_DB_1_PORT_5432_TCP=tcp://172.17.0.5:5432

+Full URL, e.g. DB_1_PORT_5432_TCP=tcp://172.17.0.5:5432

name_PORT_num_protocol_ADDR
-Container's IP address, e.g. MYAPP_DB_1_PORT_5432_TCP_ADDR=172.17.0.5

+Container's IP address, e.g. DB_1_PORT_5432_TCP_ADDR=172.17.0.5

name_PORT_num_protocol_PORT
-Exposed port number, e.g. MYAPP_DB_1_PORT_5432_TCP_PORT=5432

+Exposed port number, e.g. DB_1_PORT_5432_TCP_PORT=5432

name_PORT_num_protocol_PROTO
-Protocol (tcp or udp), e.g. MYAPP_DB_1_PORT_5432_TCP_PROTO=tcp

+Protocol (tcp or udp), e.g. DB_1_PORT_5432_TCP_PROTO=tcp

name_NAME
-Fully qualified container name, e.g. MYAPP_DB_1_NAME=/myapp_web_1/myapp_db_1

+Fully qualified container name, e.g. DB_1_NAME=/myapp_web_1/myapp_db_1