-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
83 lines (65 loc) · 1.46 KB
/
styles.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
/*-- scss:defaults --*/
// Colors
$green-highligts: #20be9f;
$grey-code-background: #2c3e501a;
$dark-blue: #2c3e50;
$light-grey: #F5F9FB;
/*-- scss:rules --*/
// Inline code
code {
color: $green-highligts;
background-color: $grey-code-background;
border-radius: 5px;
padding: 0.2em 0.25em 0.2em 0.25em
//padding-top: 0.2em;
//padding-right: 0.25em;
//padding-bottom: 0.2em;
//padding-left: 0.25em;
}
// Blockquote
blockquote {
font-size: 1em;
color: $dark-blue;
border-left-color: $dark-blue;
}
/* Case usage */
.usercase {
background-color: $light-grey;
border-left: 6px solid $green-highligts;
/*border: 1px solid #da222200;*/
border-radius: 4px;
padding: 10px 10px 10px 10px;
margin: 10px 0px 10px 0px;
position: relative;
width: fit-content;
}
.usercase p {
width: fit-content;
color: var(--primary);
margin: 0;
}
.usercase-header {
//margin-left: 0em;
margin-top: -1px;
padding-left: 60px;
padding-top: 5px;
padding-bottom: 0.1em;
color: $dark-blue;
background-color: $grey-code-background;
border-top-right-radius: 10px;
font-size: .9rem;
font-weight: 600;
background-size: 40px;
background-repeat: no-repeat;
background-position: 15px center;
//background-image: url("goal.png");
overflow-wrap: anywhere;
flex: 1 1 auto !important;
box-sizing: border-box;
}
.my_new_box {
margin: 1em 0;
border: 2px solid gray;
border-left: 10px solid $green-highligts;
border-radius: 10px;
}