blob: 23829dad33be7fe48edcafe20af53e571e86132e (
plain)
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
@import '../modules/mixins'; // For box-shadow and box-sizing
.info-container {
box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.55);
overflow-y: auto;
position: absolute;
top: 130px;
right: $graph-margin-right;
}
.subtitle {
font-style:italic;
color: #bbb;
font-size: 12px;
float:right;
}
.info {
color: $dark-grey;
background-color: white;
@include rz-box-shadow(0px, 1px, 6px, 0px, rgba(0,0,0,0.3) );
position: relative;
width: 100%;
padding: 12px 15px;
@include rz-box-sizing-border;
border-top: 6px solid $dark-grey;
}
// change card top border color by node type
.info.type-person {
border-top: 6px solid $blue;
}
.info.type-club {
border-top: 6px solid $magenta;
}
.info.type-skill {
border-top: 6px solid $yellow;
}
.info.type-third-internship-proposal {
border-top: 6px solid $cyan;
}
.info.type-internship {
border-top: 6px solid $orange;
}
.info.type-interest {
border-top: 6px solid $purple;
}
.info.type-empty {
border-top: 6px solid $mid-grey;
}
.info.type-project {
border-top: 6px solid $green;
}
// card elements styles
.info .info-card-attr {
display: block;
text-transform: capitalize;
font-size: $h4-size;
font-family: $bold-font-family;
}
.info .info-card-attr-val {
display: block;
font-size: $h2-size;
margin: 12px 0px 24px 0px;
}
.info-card-attr-val input{
width: 100%;
font-size: $h2-size;
}
.info-card-url input{
font-size: $h4-size;
margin-left: 20px;
}
.info-card-url:before { //url icon before the url line
position: absolute;
margin-top: 7px;
content: "";
background: url(../img/url-icon.png);
min-width: 14px;
min-height: 14px;
background-position: center;
background-repeat: no-repeat;
}
.select-dropdown {
border: none;
font-family: $base-font-family;
background-color: white;
font-size: $h3-size;
color: $dark-grey;
width: 100%;
padding: 0;
margin: 12px 0px 24px 0px;
}
.select-dropdown:focus {
outline: none;
}
.select-dropdown option{
font-size: $h3-size;
color: $dark-grey;
border: 1px solid $dark-grey;
}
#info-container__bottom-btn-bar {
border-top: 2px solid $mid-light-grey;
margin-top: 10px;
padding-top: 10px;
}
|