Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / ui / new_ui / ui / sass / _items-list.scss @ 692c5cea

History | View | Annotate | Download (1.8 kB)

1
/* List view for VMs, networks  */
2

    
3
.entities {
4
	padding-top:25px;
5
}
6

    
7

    
8
.items-list {
9
	li {
10
		text-align:center;
11
		padding:20px;
12
		list-style:none;
13
		.add-new {
14
			a {
15
				margin:0 20px;
16
				display: block;
17
				font-weight: bold;
18
				height:190px;
19
				padding:65px 30px 15px;
20
				border:1px dashed $primary-color;
21
				&:hover {
22
					border-color:$third-color;
23
				}
24
			}			
25
		}
26
		.img-wrap {
27
			height: 78px;
28
		}
29
		.img {
30
			margin-bottom: 20px;
31
			position: relative;
32
			height:58px;
33
			display: inline-block;
34
		}
35
		.container {
36
			&.set-bg {	background:lighten($primary-color,38%); }
37
			&.set-border {	border-color:$secondary-color; }
38
			border:1px solid transparent;
39
			margin: 0 20px;
40
			padding:25px 0;
41
			position: relative;
42
			.options {
43
				width:100%;
44
				text-align:center;	
45
				position: absolute;
46
				top:-3px;
47
				left:0;
48
				display: none;
49
				.wrap {
50
					height:100%;
51
					padding:25px 25px 0;
52
					text-align: left;
53
					a {
54
						font-size:emCalc(27px);
55
						display: inline-block;
56
						color:$primary-color;
57
						line-height: 1em;
58
						margin-bottom:10px;
59

    
60
						font-weight: bold;
61
						&:hover {
62
							color: $secondary-color;
63
						}
64
					}
65
						
66
					
67
					
68
				}
69
			}
70
		}
71
		.check {
72
			position:absolute;
73
			right:10px;
74
			top:5px;
75

    
76
			color:lighten($primary-color,35%);
77
			font-weight: bold;
78
			font-size:emCalc(27px);
79
			cursor: pointer;
80
			z-index: 10;
81
			span { position:relative; z-index:10;}
82
			&.active {
83
				color:$secondary-color;
84
			}
85
		}
86
		.visible-info {
87
			margin: 0 25px;
88
			position:relative;
89
			color:$primary-color;
90
			overflow: hidden;
91
			span {
92
				&.title {
93
					white-space: nowrap;
94
				}
95
				display: block;
96
				position: relative;
97
				em {
98
					font-style:normal;
99
					position: relative;
100
				}
101
			}
102
		}
103

    
104
	}
105
}
106

    
107
@media #{$entities-large} {
108
	.entities {
109
		.items-list {
110
			@include block-grid(4, 20px, true);
111
		}
112
	} 
113
}