experiment.scss 1008 Bytes
Newer Older
1
2
$pageMargin: 24px;

3
4
5
.expBackground {
	background: #f2f2f2;
	height: 100%;
6

7
	.content {
8
9
10
		/* TODO: here is 32 rather than $pageMargin is because experiment page `content` position */
		margin-top: 32px;
		margin-bottom: $pageMargin;
11
12
13
14
15
		background: #fff;
	}
}

.experimentList {
16
	padding: $pageMargin 42px;
17
18

	.box {
19
20
		margin-top: 20px;

21
22
		.search {
			width: 90%;
23

24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
			&-input {
				width: 330px;
			}
		}

		.filter {
			width: 10%;
			text-align: right;

			&-button-open {
				background: #f3f2f1;
			}
		}
	}

	.filter-condition {
		margin-top: 26px;
		.reset {
			width: 80px;
			position: relative;
			top: 29px;
		}

		&-status {
			width: 194px;
		}
		&-platform {
			width: 150px;
		}
	}

	.hidden {
		display: none;
	}

	.margin {
		margin-left: 10px;
	}

63
64
65
66
67
68
69
70
71
	.idColor {
		color: #615f5d !important;
	}

	.toAnotherExp {

		&:hover {
			color: #333231 !important;
		}
72

73
74
		&:hover {
			color:  #615f5d !important;
75
76
		}
	}
77
78
79
80

	.ms-DetailsRow:focus {
		background: #e1dfdd;
	}
81
}
82
83
84
85

.gray-port {
	color: #E2E2E2;
}