summaryrefslogtreecommitdiffstats
path: root/cwd/test.rcss
blob: f1e8cee34fac51ed60de71d69a837637c494f5e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
body {
    background-color: red;
    color: blue;
    font-size: 50px;
    font-family: "open sans";
    width: 100%;
}

body:hover {
    background-color: yellow;
}

div {
    background-color: green;
}

div:hover {
    background-color: white;
}

button:active {
    background-color: teal;
}

.right-pos {
    position: absolute;
    right: 0px;
}