aboutsummaryrefslogtreecommitdiff
path: root/assets/scss/_vda.scss
blob: ede9a53257131903b0bd57679f92f2ce1d925819 (plain)
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
29
30
31
32
33
34
35
36
37
38
body.vda {
    background: $bg-vda-on;

	  > aside {
		    &:hover, &:focus {
			      background-color: $bg-vda-on;
			      nav ul li:last-child {
				        background: $bg-vda-on;
			      }
		    }
	  }

	  #HeLa {
		    p > span {
			      display: block;
			      background-color: teal;
			      color: white;
			      font-weight: bold;
			      margin-top: 2rem;
			      padding: 1rem;
			      border-top-left-radius: 2rem;
		    }
		    button {
			      border: 1rem solid #ff667f;
			      height: auto;
			      background-color: teal;
			      color: white;
			      width: 100%;
			      border-radius: 0;
			      border-bottom-right-radius: 3rem;
			      font-size: larger;
			      &:hover, &:focus {
				        border-color: teal;
				        background-color: #ff667f;
			      }
		    }
	  }
}