-
Notifications
You must be signed in to change notification settings - Fork 7
/
global.css
120 lines (99 loc) · 1.9 KB
/
global.css
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
:root{
--yellow: #fff159ff;
--blue: #3484faff;
--light: #ebebebff;
--superlight: #f7f7f7;
--black: #333333ff;
--green: #00a650ff;
}
html,
body,
div#__next,
div#__next > div
{
min-height: 100vh;
}
.photo-form-cover{
border: 3px solid #ff8c22;
border-radius: 8px;
position: relative;
}
.photo-form-cover::before{
content: 'cover';
position: absolute;
width: 50px;
height: 25px;
background: #ff8c22;
display: flex;
align-items: center;
justify-content: center;
bottom: 0px;
left: 0px;
border-radius: 0 0 0 4px;
}
/* semantic ui overwrite */
.ui.dimmer>.content{
width: 100%;
}
i.icon.icon-no-margin{
margin: 0;
}
.btn-bg-white{
background-color: white;
border-radius: 5px;
}
.ui.blue.right.ribbon.label,
.ui.yellow.right.ribbon.label{
margin-left: 27px;
}
.ui.centered.one.column.grid{
width: 100% !important;
margin: 0 !important;
}
#githubIcon-about-home{
font-size: 22px;
margin: 0;
}
/* pure-react-carousel overwrite */
.carousel{
margin: auto;
}
.carousel__dot--selected{
background: #fff !important;
transform: scale(1.7);
}
/* autoComplete.js owerwite */
.autoComplete_wrapper{
width: 100%;
}
.autoComplete_result{
color: var(--black);
transition: none;
padding: 8px;
margin: 0;
border-radius: 0;
}
.autoComplete_result:hover{
background-color: var(--blue);
color: var(--light);
}
.autoComplete_result:hover span.autoComplete_highlighted{
color: #fff;
}
span.autoComplete_highlighted{
color: black;
}
#autoComplete_list{
margin-top: 0;
border-radius: 0 0 5px 5px;
padding: 10px 0;
}
/* ================ media queries rewrite =================== */
/* semantic UI */
@media screen and (max-width: 750px){
.ui.blue.right.ribbon.label,
.ui.yellow.right.ribbon.label{
margin-left: -15px;
margin-bottom: -5px;
}
}