-
Notifications
You must be signed in to change notification settings - Fork 2
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
Change MSS use case to HTML/CSS format #3
base: master
Are you sure you want to change the base?
Conversation
The Main Success Scenario (MSS) describes the most straightforward interaction for a given use case, which assumes that nothing goes wrong. This is also called the _Basic Course of Action_ or the _Main Flow of Events_ of a use case. Given below is another example of an MSS. | ||
|
||
<tip-box> | ||
<div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like you are using 8 space indentation. Use 2-spaces instead.
</li> | ||
<li> Extensions: | ||
<ol> | ||
<li class="custom-bullet-point">3a. OBS detects an error in the entered data. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@acjh is there a way to avoid repeating class="custom-bullet-point"
in every list item?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Put a class on the ol
:)
.custom-bullet-list > li,
.custom-bullet-point {
list-style: none;
margin-left: -25px;
}
@rebekahlow-jy CSS uses 4 spaces for indentation, unlike HTML.
Fixed HTML and CSS indentation issues, and changed CSS li styling to ol styling. Thank you all for the tips! |
@@ -0,0 +1,9 @@ | |||
.custom-bullet-list > li { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can put in /book/css/
?
Code looks fine @rebekahlow-jy. perhaps you can transfer these changes to the |
Alright, I've shifted to css file to |
Main Success Scenario use case changed from Markdown to HTML/CSS formatting.