Skip to content

Commit cbba8b4

Browse files
authored
modification of max width of docs (#96)
1 parent 98a0675 commit cbba8b4

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

docs/stylesheets/extra.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.md-grid {
2+
max-width: 1200px;
3+
}

docs/tutorials/2_first_qe_calculation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Ensure you have the necessary packages and codes installed, which you can verify
2121

2222
If not already done, remember to install the `sssp` pseudopotentials:
2323

24-
```bash
24+
```text
2525
aiida-pseudo install sssp # install the default SSSP/1.3/PBE/efficiency family
2626
```
2727

@@ -98,23 +98,23 @@ builder = PwBaseWorkChain.get_builder_from_protocol(
9898
)
9999

100100
run = run_get_node(builder)
101-
````
101+
```
102102

103103
**Output:**
104-
```
104+
```text
105105
11/04/2025 05:48:46 PM <42782> aiida.orm.nodes.process.workflow.workchain.WorkChainNode: [REPORT] [13784|PwBaseWorkChain|run_process]: launching PwCalculation<13789> iteration #1
106106
11/04/2025 05:49:09 PM <42782> aiida.orm.nodes.process.workflow.workchain.WorkChainNode: [REPORT] [13784|PwBaseWorkChain|results]: work chain completed after 1 iterations
107107
11/04/2025 05:49:10 PM <42782> aiida.orm.nodes.process.workflow.workchain.WorkChainNode: [REPORT] [13784|PwBaseWorkChain|on_terminated]: remote folders will not be cleaned
108108
```
109109

110110
You can verify that the `tot_charge` was indeed set in the input file of the `pw.x` calculation:
111111

112-
```shell
112+
```text
113113
verdi calcjob inputcat 13789 | grep tot_charge
114114
```
115115

116116
**Output:**
117-
```
117+
```text
118118
tot_charge = 1.0000000000d+00
119119
```
120120

mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ theme:
4141
toggle:
4242
icon: material/brightness-4
4343
name: Switch to system preference
44-
#extra_css:
45-
#- stylesheets/extra.css
44+
extra_css:
45+
- stylesheets/extra.css
4646
markdown_extensions:
4747
- attr_list
4848
- md_in_html

0 commit comments

Comments
 (0)