Электронный Кадастр

E-cadastre.ru/static/wap/css/common.css

E-cadastre.ru/static/wap/css/common.css is a Cascading Style Sheets (CSS) file used for styling the web pages of E-Cadastre, a Russian web platform for land registry and land-use planning. The file contains common styles used throughout the website, including fonts, colors, margins, borders, and positioning.

CSS Features

The common.css file is loaded on every page of the E-Cadastre website, ensuring consistent styling across all pages. The CSS contains definitions for various HTML elements, class names, and IDs used by the website. The CSS properties include:

The CSS follows the mobile-first design approach, with styles tailored for different screen sizes. The CSS defines media queries that change the layout and styling based on the screen size or device orientation.

Code example

/* font styles */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

/* color styles */
h1 {
  color: #FF0000;
}

.button {
  background-color: #333333;
  color: #FFFFFF;
  border-color: #333333;
}

/* spacing styles */
.header {
  margin-top: 20px;
  padding: 10px;
}

.content {
  margin: 0 auto;
  padding: 10px;
  border-width: 1px;
  border-color: #CCCCCC;
}

/* positioning styles */
.container {
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

Conclusion

E-Cadastre's common.css file provides the foundation for the website's styling, ensuring a consistent look and feel across all pages. By using CSS, the website is able to adapt to different screen sizes and devices, providing an optimal user experience.