Skip to content

[FIX][pre][code] CSS problem #6756

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
May 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions docs/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"**/*Tests*.csproj",
"**/*Tests.*.csproj"
],
"cwd": "../src"
"src": "../src"
}],
"dest": "api",
"filter": "filterConfig.yml"
Expand All @@ -23,7 +23,7 @@
"files": [
"api/**.yml",
"api/index.md"
]
]
}, {
"files": [
"articles/**.md",
Expand Down Expand Up @@ -74,11 +74,12 @@
"fileMetadataFiles": [],
"template": [
"default",
"template"
"modern",
"template"
],
"postProcessors": ["ExtractSearchIndex"],
"noLangKeyword": false,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need to add all three of these deleted settings back

"warningsAsErrors": true,
"warningsAsErrors": true,
"Docfx_Git_Timeout": 30000
}
}
}
16 changes: 1 addition & 15 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,41 +60,31 @@ h2:before{
<div class="container">
<!-- FEATURED BOXES 3 -->
<div class="row featured-box-minimal">

<div class="col-md-4 col-sm-6 col-xs-12">
<h4><i class="fa fa-arrows-alt"></i> Simple Concurrency &amp; Distribution</h4>
<p>Asynchronous and Distributed by design. High-level abstractions like Actors and FSM.</p>
</div>

<div class="col-md-4 col-sm-6 col-xs-12">
<h4><i class="fa fa-flash"></i> High Performance</h4>
<p>50 million msg/sec on a single machine. Small memory footprint; ~2.5 million actors per GB of heap.</p>
</div>

<div class="col-md-4 col-sm-6 col-xs-12">
<h4><i class="fa fa-shield"></i> Resilient by Design</h4>
<p>Write systems that self-heal. Remote and/or local supervisor hierarchies.</p>
</div>


<div class="col-md-4 col-sm-6 col-xs-12">
<h4><i class="fa fa-th-large"></i> Elastic & Decentralized</h4>
<p>Adaptive load balancing, routing, partitioning and configuration-driven remoting.</p>
</div>

<div class="col-md-4 col-sm-6 col-xs-12">
<h4><i class="fa fa-plus-circle"></i> Extensible</h4>
<p>Use Akka.NET Extensions to adapt Akka to fit your needs.</p>
</div>

<div class="col-md-4 col-sm-6 col-xs-12">
<h4><i class="fa fa-exclamation"></i> Open Source </h4>
<p>Akka.NET is released under the Apache 2 license</p>
</div>

</div>
<!-- /FEATURED BOXES 3 -->

</div>
</section>
<!-- /WELCOME -->
Expand All @@ -103,7 +93,6 @@ h2:before{
<!-- PREMIUM -->
<section class="alternate">
<div class="container">

<div class="row">
<div class="col-md-6">
<h2><strong>Actor</strong> Model</h2>
Expand All @@ -112,9 +101,7 @@ The Actor Model provides a higher level of abstraction for writing concurrent an
<p>Actors were defined in the 1973 paper by <a href="http://en.wikipedia.org/wiki/Carl_Hewitt">Carl Hewitt</a> but have been popularized by the Erlang language, and used for example at Ericsson with great success to build highly concurrent and reliable telecom systems.</p>
<p><a href="/articles/intro/what-problems-does-actor-model-solve.html">Read more</a></p>
</div>

<div class="col-md-6 text-center">

<img class="img-responsive img-rounded appear-animation" data-animation="fadeIn" style="border:2px solid white;width:100%;border-radius:10px" src="/images/actor.png" alt="" />
</div>
</div>
Expand All @@ -128,7 +115,6 @@ Everything in Akka.NET is designed to work in a distributed setting: all interac
</p>
<p><a href="/articles/Remoting">Read more</a></p>
</div>

<div class="col-md-6 text-center">
<img class="img-responsive img-rounded appear-animation" data-animation="fadeIn" style="border:2px solid white;width:100%;border-radius:10px" src="/images/network.png" alt="" />
</div>
Expand All @@ -143,10 +129,10 @@ As a parent, the actor is responsible for handling its children’s failures (so
This enables a clean set of semantics for managing failures in a concurrent, distributed system and allows for writing highly fault-tolerant systems that self-heal.</p>
<p><a href="/articles/concepts/supervision.html">Read more</a></p>
</div>

<div class="col-md-6 text-center">
<img class="img-responsive img-rounded appear-animation" data-animation="fadeIn" style="border:2px solid white;width:100%;border-radius:10px" src="/images/supervision.png" alt="" />
</div>
</div>
</div>
</section>
<div style="height:90px;"></div>
6 changes: 0 additions & 6 deletions docs/template/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -247,12 +247,6 @@ ul li::marker{
}


footer{
position: relative !important;
opacity: 1 !important;
display: block !important;
}

.footer{
background: url(/images/footer.png) no-repeat left top, linear-gradient(270deg, #FFFFFF, #6DC9ED);

Expand Down