237 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			237 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| .column-row {
 | |
|   width: 22.222222em;
 | |
| }
 | |
| 
 | |
| .column-container {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   align-items: center;
 | |
| }
 | |
| 
 | |
| .progress-bar {
 | |
|   height: 0;
 | |
|   border: solid 1px #5bc17f;
 | |
|   background-color: #5bc17f;
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
|   align-items: center;
 | |
|   width: 22em;
 | |
|   margin: 1.388888889em auto;
 | |
| }
 | |
| 
 | |
| .greenlock-logo-badge > img {
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .greenlock-logo-badge {
 | |
|   display: inline-block;
 | |
|   border: solid 1px #d9d9d9;
 | |
|   border-radius: 500px;
 | |
|   width: 5.333333333em;
 | |
|   height: 5.333333333em;
 | |
|   margin-top: 4.277777778em;
 | |
| }
 | |
| 
 | |
| .header-row {
 | |
|   text-align: center;
 | |
| }
 | |
| 
 | |
| .progress-bar-step {position: relative;margin: -0.722222222em -0.166666667em;display: inline-block;background-color: white;/* border-radius: 100%; */padding: 0 0.111111em;}
 | |
| 
 | |
| .progress-bar-step > .circle {
 | |
|   content: "";
 | |
|   display: inline-block;
 | |
|   border: solid 0.111111111em #5bc17f;
 | |
|   width: 0.888888889em;
 | |
|   height: 0.888888889em;
 | |
|   border-radius: 100%;
 | |
|   background: white;
 | |
| }
 | |
| 
 | |
| .progress-step-label {
 | |
|   text-align: center;
 | |
|   position: absolute;
 | |
|   left: 50%;
 | |
|   =: block
 | |
|   font-size:;
 | |
|   top: 139%;
 | |
|   font-size: 0.722222222em;
 | |
|   white-space: nowrap;
 | |
| }
 | |
| 
 | |
| .progress-step-label > div {
 | |
|   position: relative;
 | |
|   right: 50%;
 | |
| }
 | |
| 
 | |
| body {
 | |
|   font-size: 18px;
 | |
|   font-family: Source Sans Pro, sans-serif;
 | |
|   margin: 0;
 | |
|   line-height: 1.33;
 | |
|   color: #1a1a1a;
 | |
| }
 | |
| 
 | |
| .greenlock-name {
 | |
|   color: #808080;
 | |
| }
 | |
| 
 | |
| .js-progress-step-complete > .circle, .js-progress-step-started > .circle {
 | |
|     background-color: #5bc17f;
 | |
| }
 | |
| 
 | |
| .progress-bar-step.js-progress-step-complete svg {
 | |
|     fill: white;
 | |
|     /* stroke: none; */
 | |
|     display: initial;
 | |
| }
 | |
| 
 | |
| svg {}
 | |
| 
 | |
| .js-progress-step-complete > .circle {}
 | |
| 
 | |
| h1 {
 | |
|     font-size: 1.77777778em;
 | |
| }
 | |
| 
 | |
| input[type=email], input[type=text] {
 | |
|     font-size: 1em;
 | |
|     padding: 0.444444444em 0.888889em;
 | |
|     width: 100%;
 | |
|     border: solid 1px #d9d9d9;
 | |
|     border-radius: 2px;
 | |
| }
 | |
| 
 | |
| .checkbox-array {
 | |
|     display: flex;
 | |
|     flex-direction: column;
 | |
|     padding: 1em 0;
 | |
| }
 | |
| 
 | |
| .checkbox-array input[type=checkbox] {
 | |
|     display: none;
 | |
| }
 | |
| 
 | |
| .checkbox-array input[type=checkbox] ~ .icon-checked-box {
 | |
|     display: none;
 | |
| }
 | |
| 
 | |
| .checkbox-array input[type=checkbox] ~ .icon-unchecked-box {
 | |
|     display: initial;
 | |
| }
 | |
| 
 | |
| 
 | |
| .checkbox-array input[type=checkbox]:checked ~ .icon-checked-box {
 | |
|     display: initial;
 | |
| }
 | |
| 
 | |
| .checkbox-array input[type=checkbox]:checked ~ .icon-unchecked-box {
 | |
|     display: none;
 | |
| }
 | |
| 
 | |
| .checkbox-array .icon-checked-box, .checkbox-array .icon-unchecked-box {
 | |
|     width: 1.333333333em;
 | |
|     fill: #5bc17f;
 | |
|     margin-right: 0.666666667em;
 | |
| }
 | |
| 
 | |
| .checkbox-array label {
 | |
|     display: flex;
 | |
|     height: 1.333333333em;
 | |
|     font-size: 0.833333333em;
 | |
|     margin: 0.4em 0;
 | |
| }
 | |
| 
 | |
| a {
 | |
|     color: #1a1a1a;
 | |
| }
 | |
| 
 | |
| .email-usage {
 | |
|     color: #666666;
 | |
|     font-size: 0.833333333em;
 | |
|     margin: 2em 0;
 | |
| }
 | |
| 
 | |
| .button-next {
 | |
|     width: 100%;
 | |
|     background-color: #5bc17f;
 | |
|     border: none;
 | |
|     font-size: 1em;
 | |
|     color: white;
 | |
|     padding: 0.44444em;
 | |
|     margin: 1em 0;
 | |
| }
 | |
| 
 | |
| .tabbed-selector label {
 | |
|     width: 50%;
 | |
|     padding: 0.5em 0;
 | |
| }
 | |
| 
 | |
| .tabbed-selector {
 | |
|     display: flex;
 | |
|     font-weight: bold;
 | |
|     text-align: center;
 | |
| }
 | |
| 
 | |
| .tabbed-selector input[type=radio] {
 | |
|     display: none;
 | |
| }
 | |
| 
 | |
| table.js-acme-table-http-01, table.js-acme-table-dns-01 {
 | |
|     margin-left: -14em;
 | |
| }
 | |
| 
 | |
| .download-ver-file svg {
 | |
|     fill: #5bc17f;
 | |
|     width: 1.333333333em;
 | |
| }
 | |
| 
 | |
| .download-ver-file a {
 | |
|     color: #5bc17f;
 | |
| }
 | |
| 
 | |
| .download-ver-file {
 | |
| }
 | |
| 
 | |
| .mdicon {
 | |
|     position: relative;
 | |
|     top: 0.4em;
 | |
| }
 | |
| 
 | |
| .http-verification-info {
 | |
|     background:  #f7f7f7;
 | |
|     position: relative;
 | |
|     font-size: 0.833333333em;
 | |
|     padding: 1.6em 6.933333333em 1.6em 1.6em;
 | |
|     word-break: break-all;
 | |
|     text-align: start;
 | |
| }
 | |
| 
 | |
| .file-ver-corner-fold {
 | |
|     position: absolute;
 | |
|     width: 2em;
 | |
|     height: 2em;
 | |
|     border-left: solid #d9d9d9 1px;
 | |
|     border-bottom: solid #d9d9d9 1px;
 | |
|     right: 0;
 | |
|     top: 0;
 | |
|     background: linear-gradient(45deg, #f7f7f7 0%,#f7f7f7 50%,#ffffff 50%,#ffffff 100%);
 | |
| }
 | |
| 
 | |
| .file-ver-info-header {
 | |
|     color: #808080;
 | |
| }
 | |
| 
 | |
| .http-verification-info hr {
 | |
|     border: none;
 | |
|     border-bottom: solid 1px #d9d9d9;
 | |
| }
 | |
| 
 | |
| .acme-ver-uri {
 | |
|     word-break: break-all;
 | |
|     margin: auto;
 | |
| }
 | |
| 
 | |
| h1 {
 | |
|     text-align: center;
 | |
| } |