I learned that one can get psychosis from trauma. Say a nasty divorce that ended badly. (Do divorces ever end goodly? Don’t answer that.) I had a mental break in 2020, the begging of it after I went through a bad divorce. Well I wonder if I ended up going through that break earlier when the divorce was going on in 2019. Yeah that’s possible. Divorce was a very traumatic experience to say the least. Luckily I had someone with me who could see what was going on and helped me get the help I sorely needed. Good ol’ Google AI says this: Trauma is a well-documented risk factor and trigger for psychosis, including brief psychotic disorder or post-traumatic stress disorder (PTSD) with psychotic features. Traumatic events can alter the brain’s stress response, causing an overload that significantly increases the likelihood of developing distressing hallucinations or delusions. If that’s the case? Then yeah, I had that happen to me. The only problem is that the psychosis didn’t go away. No ...
Here's a fun little css stylesheet that one can use for menus.
The CSS for the menu is:
#menu {
padding:0px;
width:120px;
}
#menu a {
text-decoration:none;
color:#000;
display:block;
border:1px solid #fff;
padding-left:3px;
}
#menu a:hover {
border:1px solid #000;
}
Which you can use with the following html:
<ul id="menu">
<li><a href="#">Link One</a></li>
<li><a href="#">Link Two</a></li>
<li><a href="#">Link Three</a></li>
</ul>
This will producde a simple menu that when hovered over will display a black box around the menu item.
Of course you can change the background color, or the font etc. to whatever you need it to be. Ah the simplicity that is CSS.
Comments
Post a Comment