├── style.css └── index.html /style.css: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap"); 2 | /* Global Styles */ 3 | * { 4 | font-family: Quantico, sans-serif; 5 | margin: 0; 6 | padding: 0; 7 | box-sizing: border-box; 8 | } 9 | body { 10 | padding: 1px 10%; 11 | background: #00512e; 12 | } 13 | a{ 14 | text-decoration: none; 15 | } 16 | a.gien:link { 17 | color: #1B5380; 18 | } 19 | a.gien:visited { 20 | color: #1B5380; 21 | } 22 | a.gien:hover { 23 | color: #FF5F07; 24 | } 25 | a.gien:active { 26 | color: #1B5380; 27 | } 28 | /* Container Styles */ 29 | .container { 30 | display: flex; 31 | height: 89vh; 32 | } 33 | .main-wrapper{ 34 | flex: 2; 35 | overflow-y: scroll; 36 | .emphasized { font-style: italic; } 37 | } 38 | .side-bar{ 39 | background: #87d6cb; 40 | flex: .1; 41 | padding: 40px; 42 | } 43 | .side-bar ul{ 44 | padding: 0 40px; 45 | list-style: none; 46 | } 47 | .side-bar{ 48 | background: #00512e; 49 | h2 { 50 | color: white; 51 | text-align: center; 52 | font-size: 55px; 53 | } 54 | } 55 | @media only screen and (max-width: 100px) { 56 | .container { 57 | flex-direction: column; 58 | } 59 | .side-bar{ 60 | background: #114; 61 | color: #0E416B !important; 62 | } 63 | .side-bar a{ 64 | color: #0E416B !important; 65 | } 66 | } 67 | /* Navigation Menu Styles */ 68 | nav.nav-menu { 69 | width: 100%; 70 | background-color: #000000; 71 | padding: 10px; 72 | } 73 | /* Add a black background color to the top navigation */ 74 | .topnav { 75 | background-color: #ffffff; 76 | overflow: hidden; 77 | } 78 | /* Style the links inside the navigation bar */ 79 | .topnav a { 80 | float: left; 81 | color: #fdcd47; 82 | text-align: center; 83 | padding: 18px 18px; 84 | text-decoration: none; 85 | font-weight: bold; 86 | font-size: 22px; 87 | } 88 | /* Change the color of links on hover */ 89 | .topnav a:hover { 90 | color: #00512e; 91 | } 92 | /* Right-aligned section inside the top navigation */ 93 | .topnav-right { 94 | float: right; 95 | font-weight: lighter; 96 | padding-top: 25px; 97 | } 98 | /* Main Content Wrapper Styles */ 99 | .main-wrapper { 100 | background: #ffffff; 101 | padding: 40px 50px; 102 | text-align: left; 103 | } 104 | li { 105 | font-size: larger; 106 | text-align: justify; 107 | margin: 2px; 108 | margin-left: 70px; 109 | padding-top: 5px; 110 | padding-right: 80px; 111 | padding-left: 5px; 112 | color: #000000; 113 | } 114 | a { 115 | color: #f2d31d; 116 | text-underline-position: below; 117 | } 118 | a:hover{ 119 | color: #1a4759; 120 | } 121 | section { 122 | margin-bottom: 20px; 123 | } 124 | section.head, 125 | section.youtube-embed { 126 | text-align: center; 127 | } 128 | .button-link { 129 | display: block; 130 | margin: 20px 0 0 50px; 131 | padding: 10px 40px; 132 | margin-left: 100px; 133 | width: fit-content; 134 | background: #f2d31d; 135 | border-radius: 5px; 136 | text-decoration: none; 137 | color: rgb(255, 255, 255); 138 | font-weight: bold; 139 | transition: 0.3s transform ease-in-out; 140 | } 141 | .button-link1 { 142 | display: block; 143 | margin: 2px 0 0 0; 144 | padding: 2px 8px; 145 | width: fit-content; 146 | border-radius: 12px; 147 | text-decoration: none; 148 | font-weight: bold; 149 | color: #f7d117; 150 | transition: 0.3s transform ease-in-out; 151 | } 152 | .button-link:hover { 153 | transform: scale(1.05); 154 | background-color: #f7d117; 155 | } 156 | .button-link1:hover { 157 | transform: scale(1.05); 158 | background-color: rgb(230, 230, 231); 159 | border: 1px solid #ffffff; 160 | color: #3f175f; 161 | } 162 | h1 { 163 | font-size: 45px; 164 | font-weight: 900; 165 | font-family: Quantico, sans-serif; 166 | text-align: center; 167 | padding-right: 40px; 168 | padding-bottom: 10px; 169 | padding-top: 40px; 170 | color: #f2d31d; 171 | } 172 | h2 { 173 | font-size: 22px; 174 | padding-left: 100px; 175 | margin-top: 30px; 176 | margin-left: 50px; 177 | color: #000000; 178 | } 179 | h3 { 180 | font-size: 18px; 181 | font-weight: bold; 182 | text-align: center; 183 | padding-top: 20px; 184 | padding-bottom: 2px; 185 | padding-right: 15px; 186 | margin-left: 50px; 187 | margin-right: 40px; 188 | color: #5a5e5d; 189 | } 190 | h4 { 191 | font-size: 18px; 192 | font-weight: bold; 193 | padding-top: 20px; 194 | padding-bottom: 2px; 195 | margin-left: 50px; 196 | color: #000000; 197 | } 198 | ul{ 199 | text-align: justify; 200 | } 201 | .side ul{ 202 | text-align: justify; 203 | margin-bottom: 10px; 204 | line-height: 1.5rem; 205 | font-family: "Cormorant SC", sans-serif; 206 | font-size:30px; 207 | } 208 | ol{ 209 | padding-left: 30px; 210 | text-align: justify; 211 | margin-bottom: 15px; 212 | } 213 | .side ol{ 214 | text-align: justify; 215 | margin-bottom: 10px; 216 | line-height: 1.5rem; 217 | font-family: "Cormorant SC", sans-serif; 218 | font-size:30px; 219 | } 220 | p { 221 | text-align: left; 222 | margin-bottom: 20px; 223 | line-height: 1.75em; 224 | padding-top: 10px; 225 | padding-left: 100px; 226 | padding-right: 100px; 227 | margin-left: 50px; 228 | margin-right: 40px; 229 | font-size: 20px; 230 | color: #000; 231 | } 232 | /* Three image containers (use 25% for four, and 50% for two, etc) */ 233 | .column { 234 | float: left; 235 | width: 25%; 236 | padding: 5px; 237 | } 238 | /* Clear floats after image containers */ 239 | .row::after { 240 | content: ""; 241 | clear: both; 242 | display: table; 243 | } 244 | img { 245 | max-width: 100%; 246 | float: left; 247 | border: 0px solid white; 248 | border-radius: 0px; 249 | margin: 0px; 250 | } 251 | img.gien { 252 | max-width: 100%; 253 | float: left; 254 | border: 0px solid white; 255 | border-radius: 0px; 256 | margin: 0px; 257 | } 258 | .hero-gien { 259 | background-image: linear-gradient(rgba(71, 71, 71, 0.5), rgba(77, 77, 77, 0.5)), url("#"); 260 | height: 300px; 261 | background-position: center; 262 | background-repeat: no-repeat; 263 | background-size: cover; 264 | position: relative; 265 | } 266 | .hero-text { 267 | text-align: center; 268 | position: absolute; 269 | top: 50%; 270 | left: 30%; 271 | transform: translate(-0%, 0%); 272 | color: rgb(12, 9, 9); 273 | font-weight: bold; 274 | font-size: 20px; 275 | } 276 | .two-col { 277 | display: flex; 278 | justify-content: space-between; 279 | gap: 0px; 280 | } 281 | .two-col div { 282 | width: 100%; 283 | } 284 | @media only screen and (max-width: 900px) { 285 | body { 286 | padding: 0; 287 | } 288 | .two-col { 289 | flex-direction: column; 290 | } 291 | .two-col div { 292 | width: 100%; 293 | } 294 | .main-wrapper { 295 | padding: 5%; 296 | } 297 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Rock Scaling 10 | 11 | 12 | 13 | 26 | 27 |
28 | 29 |
30 |
31 |

Rock Scaling

32 |
33 |
34 |

Rock scaling is the practice of removing unstable rock from cliff faces and slopes to prevent rockfalls.

35 |

This method involves clearing away loose rocks that pose a risk of falling. The removal is typically carried out using hand tools such as pry-bars and picks. For larger rocks or boulders, various techniques are employed, including the use of air bags or pillows, winching, or breaking the rocks into smaller pieces with powered tools.

36 |

Rock scaling serves as a preliminary method of rockfall prevention, often part of the early stages in comprehensive slope stabilization efforts. Although it's a critical step for individual slope safety, it's usually seen as a temporary measure within broader stabilization projects.

37 |

Our team of rock stabilization specialists adheres to stringent safety standards and is readily available for urgent scaling projects to promptly address hazardous conditions.

38 |
39 | Find Us Here! 41 |
42 |

Contact Pacific Land Preservation for further details.

43 |

Our Scaling Services Include:

44 |
    45 |
  • Advanced High Scaling
  • 46 |
  • Precision Blasting Using Explosives & Expanding Grout for Trimming
  • 47 |
  • Comprehensive Rock Slope Stabilization
  • 48 |
  • Installation of Rock Bolts
  • 49 |
  • Construction of Rock Fencing
  • 50 |
  • Application of Cable Lashing Techniques
  • 51 |
  • Expert Rope Access & Safety Inspections
  • 52 |
53 |
54 |
55 | Read Post 57 |
58 | 59 |
60 |

Maps

61 | 62 |
63 |
64 |

Things To Do in USA

65 | 66 |
67 |
68 |

News in USA

69 | 70 |
71 |
72 |

Website

73 | 74 |
75 | 76 |
77 | https://bloglist.github.io/Rock-Scaling/
78 | https://pacificlandpreservation.s3.us-east-005.backblazeb2.com/Rock+Scaling/index.html
79 | https://rock-scaling-git-main-bloglist1s-projects.vercel.app/
80 | https://musical-starlight-321aca.netlify.app/
81 |
82 | 83 | 97 |
98 | 99 | 100 | --------------------------------------------------------------------------------