experiment.scss 695 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
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
63
64
.expBackground {
	background: #f2f2f2;
	height: 100%;
	.content {
		background: #fff;
	}
}

.experimentList {
	padding: 42px;

	.box {
		.search {
			width: 90%;
			&-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;
	}

	.tagContainer {
		width: 100%;

		.tag {
			font-weight: 500;
			background: #f2f2f2;
			margin: 0 4px;
			padding: 0 6px;
		}
	}
}