Skip to content

Commit

Permalink
update colors
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaswagner2826 committed Jan 14, 2024
1 parent 6f120a0 commit e39289f
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 12 deletions.
2 changes: 1 addition & 1 deletion _includes/footer.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<footer class="site-footer">

<!-- <div class="bottom-banner light-blue">
<!-- <div class="bottom-banner theme">
<div class="inner">
<div>
© 2024 The Regents of the University of California
Expand Down
6 changes: 3 additions & 3 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<header class="site-header">

<div class="top-banner logo light-blue">
<div class="top-banner logo theme">
<div class="inner">
<div>
<a class="logotype" href="http://www.utdallas.edu/" target="_blank" rel="noopener noreferrer">
Expand All @@ -16,11 +16,11 @@
</a></li>
<li><a href="http://ecs.utdallas.edu" target="_blank" rel="noopener noreferrer">
<!-- About ECS -->
<img src="https://engineering.utdallas.edu/websvcs/templates/engineering/images/ECS-name.png" style="max-height: fit-content;">
<img src="https://engineering.utdallas.edu/websvcs/templates/engineering/images/ECS-name.png" style="width:auto;">
</a></li>
<li><a href="http://me.utdallas.edu" target="_blank" rel="noopener noreferrer">
<!-- Mechanical Engineering -->
<img src="https://nova-utd.github.io/assets/res/logo.svg" style="max-height: fit-content;">
<img src="https://nova-utd.github.io/assets/res/logo.svg" style="width:auto;">
</a></li>
<!-- <li><a href="http://www.utdallas.edu" target="_blank" rel="noopener noreferrer">About UT Dallas</a></li> -->

Expand Down
5 changes: 3 additions & 2 deletions _pages/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@ profile:
news: false
social: false
---
The Applied Systems Lab at UT Dallas is led by [Dr. Justin Ruths]({{ '/team/index.html#Justin-Ruths' | prepend: site.baseurl | prepend: site.ur }}) as a part of the [Mechanical Engineering Department](https://me.utdallas.edu) in the [Jonnsson School of Engineering and Computer Science](https://ecs.utdallas.edu).
The Applied Systems Lab at UT Dallas is led by [Dr. Justin Ruths]({{ '/team/index.html#Justin-Ruths' | prepend: site.baseurl | prepend: site.ur }}) as a part of the [Mechanical Engineering Department](https://me.utdallas.edu) in the [Erik Jonsson School of Engineering and Computer Science](https://ecs.utdallas.edu).


1. **Security of Cyber-Physical Systems**

To a large degree, control engineering is a “hidden” technology, in the sense that it permits the efficient operation of everything from the hard-disks in our computers, to cruise-control in our cars, to regulation in refineries and power plants. Many of these applications are in some of our most critical infrastructures – e.g., power, water, transportation. Control theory has a long history of designing systems to be able to operate in the presence of undesirable noise and model uncertainty. Security of control systems, however, presents all new challenges to the control community. Assumptions that have been made – for example for the Kalman Filter – are no longer valid as soon as perturbations to the system may have been caused by an adversarial attacker rather than random failure. The systematic and persistent nature of attacks identifies key vulnerabilities of control systems. Our work uses the coupling of the physical layer to detect attacks by quantifying the analytic relationships between detection method parameters (e.g., thresholds), the largest undetected deviation of the state possible, and the expected rate of false alarms.

2. **Inference and Control of Networks**
1. **Inference and Control of Networks**

Networks have become a popular and effective way of modeling the structure and function of a large variety of complex systems – from the infrastructure for telecommunication systems, to interconnections between neurons, to interactions via social media.
Very little work has been done on understanding the properties of these systems from a control theoretic point-of-view.
Expand Down
18 changes: 13 additions & 5 deletions _sass/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
color: $text-color;

&:hover {
color: $orange-color;
color: $theme-color;
// color: #007cbe;
text-decoration: none;
}
Expand All @@ -44,7 +44,7 @@
}

.top-banner {
background: $orange-color; // #052049;
background: $theme-color; // #052049;
height: 32px;
font-size: 14px;
text-align: center;
Expand Down Expand Up @@ -91,7 +91,7 @@

.top-banner a:hover {
text-decoration: none;
color: #052049;
color: $theme-color;// #052049;
}

.top-banner.logo .inner {
Expand All @@ -108,7 +108,7 @@
*/
:root .top-banner.logo .inner {
// background: url("../assets/img/ucsf-logo-banner.svg") 30px 50% no-repeat;
background: url($univ-logo-url) 30px 50% no-repeat;
background: url($univ-logo-url) 30px 75% no-repeat;
background-size: 45px 22px;
}

Expand All @@ -124,6 +124,10 @@
background: #007cbe
}

.top-banner.theme {
background: $theme-color;
}

/**
* Site footer
*/
Expand Down Expand Up @@ -166,7 +170,7 @@
float: right;
padding-right: 13px ;
text-align: right;
background: #007cbe;
background: $theme-color;// #007cbe;
}

.bottom-banner ul, .bottom-banner li {
Expand Down Expand Up @@ -195,6 +199,10 @@
background: #007cbe
}

.bottom-banner.theme {
background: $theme-color;
}




Expand Down
2 changes: 1 addition & 1 deletion css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $grey-color: #828282;
$grey-color-light: lighten($grey-color, 40%);
$grey-color-dark: darken($grey-color, 25%);

$orange-color: #d37013; // standard orange
$theme-color: #d37013; // standard orange


$on-palm: 600px;
Expand Down

0 comments on commit e39289f

Please sign in to comment.