Skip to content
View raw
1
#code-of-honor {
2
max-width: 16em;
3
margin: 1em auto;
4
padding: 1em;
5
color: white;
6
border-radius: 1rem;
7
}
8
9
#code-of-honor.accepted { background-color: forestgreen; }
10
#code-of-honor.rejected { background-color: firebrick; }
11
12