my_rust_css_parser 0.1.0

A simple CSS parser using the Pest library for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13

body {
    font-family: Arial, sans-serif;             
    background-color: #f4f4f9;          /*Коментар*/
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    text-align: center;
    display: flex;
    justify-content: center;
     /*Коментар*/
}