Revize 2b1ca67d
Přidáno uživatelem Marek Zábran před téměř 5 roky(ů)
resources/sass/_custom.scss | ||
---|---|---|
74 | 74 |
} |
75 | 75 |
} |
76 | 76 |
|
77 |
/////////text types |
|
78 |
//většina běžných textů |
|
79 |
.text { |
|
80 |
font-family: Avenir Roman; |
|
81 |
font-size: 8pt; |
|
82 |
line-height: 9pt; |
|
83 |
} |
|
84 |
|
|
85 |
//text inputu a název artefaktů |
|
86 |
.text2{ |
|
87 |
font-family: Avenir Medium; |
|
88 |
font-size: 8pt; |
|
89 |
} |
|
90 |
|
|
91 |
//název "kaplicky" a "choose a few" v categories (tam má jinou barvu) |
|
92 |
.kaplicky{ |
|
93 |
color: $theme-color-one; |
|
94 |
font-size: 11pt; |
|
95 |
font-family: Avenir Black; |
|
96 |
letter-spacing: 3pt; |
|
97 |
} |
|
98 |
|
|
99 |
//autor artefaktu |
|
100 |
.text-author{ |
|
101 |
font-family: Avenir Roman; |
|
102 |
font-size: 7pt; |
|
103 |
color: $theme-color-four; |
|
104 |
} |
|
105 |
|
|
106 |
//počet lajků |
|
107 |
.text-number{ |
|
108 |
font-family: Avenir Medium; |
|
109 |
font-size: 5pt; |
|
110 |
color: $theme-color-four; |
|
111 |
} |
|
112 |
|
|
113 |
//notes u metadat, about v about, text levého menu |
|
114 |
.text-headline{ |
|
115 |
font-family: Avenir Medium; |
|
116 |
font-size: 12pt; |
|
117 |
color: $theme-color-four; |
|
118 |
} |
|
119 |
|
|
120 |
//název metadata, text pravého menu |
|
121 |
.text-page{ |
|
122 |
font-family: Avenir Medium; |
|
123 |
font-size: 7pt; |
|
124 |
} |
|
125 |
|
|
126 |
|
|
127 |
////login |
|
77 | 128 |
.auth{ |
78 | 129 |
.card{ |
79 | 130 |
border: none; |
... | ... | |
89 | 140 |
.form-control{ |
90 | 141 |
padding: 0px; |
91 | 142 |
height: 17pt; |
143 |
//font-family: Avenir Medium; |
|
144 |
//font-size: 8pt; |
|
92 | 145 |
} |
93 | 146 |
} |
94 | 147 |
|
95 | 148 |
.card-body { |
96 | 149 |
background-color: $theme-color-five; |
97 |
font-family: Avenir; |
|
150 |
font-family: Avenir Roman;
|
|
98 | 151 |
color: $theme-color-four; |
99 | 152 |
|
100 | 153 |
} |
101 | 154 |
|
102 |
.kaplicky{ |
|
103 |
color: $theme-color-one; |
|
104 |
font-size: 11pt; |
|
105 |
font-family: Avenir Black; |
|
106 |
//width: 100pt; |
|
107 |
letter-spacing: 3pt; |
|
108 |
} |
|
109 |
|
|
110 | 155 |
.form-control { |
111 | 156 |
background-color: $theme-color-five; |
112 | 157 |
margin-top: -1px; |
... | ... | |
143 | 188 |
border-radius: 0; |
144 | 189 |
width: 6.5rem; |
145 | 190 |
height: 2rem; |
191 |
font-family: Avenir Roman; |
|
146 | 192 |
|
147 | 193 |
&:active, &:focus, &:visited { |
148 | 194 |
outline: none; |
... | ... | |
197 | 243 |
position: relative; |
198 | 244 |
|
199 | 245 |
//Circle style button |
200 |
//Toto možná nebude zcela optimální pro ostatní circle buttony. Nehodící se propagujte do btn-categories |
|
246 |
//Toto možná nebude zcela optimální pro ostatní circle buttony. Nehodící se propagujte do btn-categories.
|
|
201 | 247 |
.btn-circle.rounded-circle { |
202 | 248 |
padding: 6px 0px; |
203 | 249 |
font-size: 16px; |
... | ... | |
212 | 258 |
color:$theme-color-four; |
213 | 259 |
outline: none !important; |
214 | 260 |
box-shadow: none !important; |
261 |
font-family: Avenir Medium; |
|
215 | 262 |
|
216 | 263 |
&:active |
217 | 264 |
{ |
resources/views/auth/login.blade.php | ||
---|---|---|
24 | 24 |
<label for="email" class="col-md-4 col-form-label text-md-right">{{ __('e-mail') }}</label> |
25 | 25 |
|
26 | 26 |
<div class="col-md-6"> |
27 |
<input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email" autofocus> |
|
27 |
<input id="email" type="email" class="form-control text2 @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email" autofocus>
|
|
28 | 28 |
|
29 | 29 |
@error('email') |
30 | 30 |
<span class="invalid-feedback" role="alert"> |
... | ... | |
38 | 38 |
<label for="password" class="col-md-4 col-form-label text-md-right">{{ __('password') }}</label> |
39 | 39 |
|
40 | 40 |
<div class="col-md-6"> |
41 |
<input id="password" type="password" class="form-control @error('password') is-invalid @enderror" name="password" required autocomplete="current-password"> |
|
41 |
<input id="password" type="password" class="form-control text2 @error('password') is-invalid @enderror" name="password" required autocomplete="current-password">
|
|
42 | 42 |
|
43 | 43 |
@error('password') |
44 | 44 |
<span class="invalid-feedback" role="alert"> |
resources/views/auth/register.blade.php | ||
---|---|---|
23 | 23 |
<label for="name" class="col-md-4 col-form-label text-md-right">{{ __('name') }}</label> |
24 | 24 |
|
25 | 25 |
<div class="col-md-6"> |
26 |
<input id="name" type="text" class="form-control @error('name') is-invalid @enderror" name="name" value="{{ old('name') }}" required autocomplete="name" autofocus> |
|
26 |
<input id="name" type="text" class="form-control text2 @error('name') is-invalid @enderror" name="name" value="{{ old('name') }}" required autocomplete="name" autofocus>
|
|
27 | 27 |
|
28 | 28 |
@error('name') |
29 | 29 |
<span class="invalid-feedback" role="alert"> |
... | ... | |
37 | 37 |
<label for="email" class="col-md-4 col-form-label text-md-right">{{ __('e-mail') }}</label> |
38 | 38 |
|
39 | 39 |
<div class="col-md-6"> |
40 |
<input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email"> |
|
40 |
<input id="email" type="email" class="form-control text2 @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email">
|
|
41 | 41 |
|
42 | 42 |
@error('email') |
43 | 43 |
<span class="invalid-feedback" role="alert"> |
Také k dispozici: Unified diff
Issue #7945 @1.75h
Nalezení všech stylů v návrhu a jejich vytvoření.
Styly zatím nejsou vloženy do ostatních stránek.