-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy path_header.scss
100 lines (93 loc) · 2.08 KB
/
_header.scss
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
.stdcm-header {
box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
background-color: rgba(255, 255, 255, 1);
height: 120px;
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
padding-right: 50px;
&__title {
max-height: 48px;
color: rgba(0, 0, 0, 1);
font-size: 2rem;
font-weight: 600;
font-style: SemiBold;
letter-spacing: -0, 6px;
text-align: left;
line-height: 40px;
}
&__notification {
max-height: 48px;
border-radius: 2px;
border: 4px solid rgba(112, 193, 229, 1);
background-color: rgba(230, 247, 255, 1);
padding: 7px 16px 9px 16px;
color: rgba(33, 100, 130, 1);
font-size: 1rem;
font-weight: 600;
font-style: SemiBold;
letter-spacing: 0px;
line-height: 24px;
a {
color: rgba(24, 68, 239, 1);
font-size: 1rem;
font-weight: 400;
font-style: Regular;
letter-spacing: 0px;
text-align: left;
line-height: 24px;
}
}
&__debug {
button:focus {
outline: none;
}
button {
height: 40px;
border-radius: 6px;
color: var(--primary50);
border: 1px solid var(--primary30);
&:hover {
color: var(--primary80);
border: 1px solid var(--primary80);
background-color: var(--white100);
}
&:focus {
outline: none;
}
&:disabled {
pointer-events: none;
opacity: 0.5;
}
&.selected {
box-shadow: 0 0 0 2px var(--white100) inset;
border: 1px solid rgba(92, 89, 85);
background-color: rgba(255, 242, 179);
&:hover {
border: 3px solid var(--white100);
border: 1px solid var(--black100);
background-color: var(--black5);
}
}
&.debug {
width: 40px;
color: var(--primary30);
&:hover {
color: var(--primary80);
}
}
}
}
.scenario-explorator-card {
height: 112px;
margin-bottom: 0;
&-noscenario {
font-size: 1.2rem;
}
&-head-img,
&-head {
height: 96px;
}
}
}