Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / ui / new_ui / ui / sass / _sshkeys-wizard.scss @ f50cc12b

History | View | Annotate | Download (2.6 kB)

1
body .body-wrapper {
2
	.overlay-area-reveal {
3
		.secondary-wizard {
4
			padding-left: 60px;
5
			padding-right: 60px;
6
			h2 {
7
				font-size: 1.5em;
8
				// margin-top: 10px;
9
			}
10
			p {
11
				font-size: 14px;
12
				color: black;
13
				text-align: left;
14
				&.buttons {
15
					text-align: center;
16
					a {
17
						background-color: white;
18
						text-decoration: none;
19
						color: $secondary-color;
20
						border-color: $secondary-color;
21
						&:first-child {
22
							margin-right:20px;
23
						}
24
						&:hover {
25
							// color: $secondary-color;
26
							// border-color: $secondary-color;
27
							// background-color: white;
28
							// text-decoration: none;
29
						}
30
						&.current {
31
							color: white;
32
							background-color: $secondary-color;
33
							border-color: white;
34
						}
35
						&.close-reveal-modal {
36
							position: initial;
37
						}
38
					}
39
				}
40
			}
41
			h4 {
42
				display: inline-block;
43
				margin-right: 15px;
44
				font-size: 14px;
45
				font-weight: normal;
46
				color: #4d4d4d;
47
			}
48
			.generate-key-area {
49
				display: none;
50
				height: 225px;
51
				border: 1px solid transparent;
52
				padding: 10px;
53
				background-color: rgba(145, 145, 148, 0.31);
54
				width: 450px;
55
				margin: 0 auto;
56

    
57
			}
58
			.import-key-area {
59
				display: none;
60
				height: 485px;
61
				border: 1px solid transparent;
62
				padding: 10px;
63
				background-color: rgba(145, 145, 148, 0.31);
64
				width: 450px;
65
				margin: 0 auto;
66
				h4 {
67
					float: left;
68
					min-width: 80px;
69
				}
70
				.key-name {
71
					::-webkit-input-placeholder {
72
					   text-align:center;
73
					}
74

    
75
					:-moz-placeholder { /* Firefox 18- */
76
					   text-align:center;  
77
					}
78

    
79
					::-moz-placeholder {  /* Firefox 19+ */
80
					   text-align:center;  
81
					}
82

    
83
					:-ms-input-placeholder {  
84
					   text-align:center; 
85
					}
86
					h4 {
87
						position: relative;
88
						bottom: -5px;
89
					}
90
					.key-name-input {
91
						color: $third-color;
92
					}
93
				}
94
				.key-content {
95
					margin-top: 25px;
96
					textarea {
97
						min-height:250px;
98
						width: 328px;
99
					}
100
				}
101
			}
102
			.close-reveal-modal {
103
				color: black;
104
				&:hover {
105
					color: $secondary-color;
106
				}
107
			}
108
			ul {
109
				list-style-type: none;
110
				li {
111
					// list-style: none outside none;
112
					clear: left;
113
					padding: 4px 10px;
114
					border: 1px solid transparent;
115
					text-align: left;
116
					font-weight: normal;
117
					height: 32px;
118
					.name-col {
119
						float: left;
120
						width: 42%
121
					}
122
					.actions-col {
123
						// visibility: hidden;
124
						float: left;
125
						width: 56%;
126
						visibility: visible;
127
						a:not(:last-child) {
128
							margin-right: 10px;
129
						}
130
					}
131
					&:hover {
132
						border-color: #30c79e;
133
					}
134
				}
135
			}
136
		}
137
	}
138
}