common.scss 335 Bytes
Newer Older
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
.ellipsis {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.link {
	outline: none;
	color: #333 !important;
	text-decoration: none;
	
	&:hover {
		color: #0071bc !important;
		text-decoration: underline;
	}
	&:active,
	&:visited {
		color: #0071bc;
	}
}

.cursor {
	&:hover,
	& i:hover {
		cursor: pointer;
	}
}