Last active
May 17, 2018 02:55
-
-
Save aaronparker/68e8fd1c066c6ecc8b66bb9067120e2c to your computer and use it in GitHub Desktop.
Ivanti Application Control Message Box styling
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body{ | |
font-family:'Segoe UI','Regular'; | |
background-color:#E6E6E6; | |
color:#000; | |
font-size:11pt; | |
margin:0px; | |
padding:0px; | |
overflow:hidden; | |
} | |
.header,.description,.confirm-btn{ | |
display:block; | |
min-width:200px; | |
width:98%; | |
padding-left:3%; | |
padding-right:3%; | |
padding-top:20px; | |
padding-bottom:20px; | |
} | |
.header{ | |
font-size:15pt; | |
float:left; | |
width:98%; | |
position:absolute; | |
top:0px; | |
} | |
.blue{ | |
background-color:#85B8E8; | |
} | |
.yellow{ | |
background-color:#F8D470; | |
} | |
.red{ | |
background-color:#BF3235; | |
color:#FFF; | |
} | |
.description{ | |
margin-top:45px; | |
padding-right:40px; | |
} | |
.div{ | |
padding-right:20px; | |
} | |
.confirm-btn{ | |
text-align:center; | |
} | |
button{ | |
width:200px !important; | |
height:35px; | |
text-align:center; | |
border:none; | |
background-color:#B8B8B8; | |
font-family:'Segoe UI','Regular'; | |
font-size:11pt; | |
} | |
button:hover,button.hover{ | |
border-width:2px; | |
border-style:solid; | |
border-color:#989898; | |
background-color:#B8B8B8; | |
} | |
button:active,button.active{ | |
background-color:#989898; | |
} | |
textarea{ | |
width:405px !important; | |
font-family:'Consolas'; | |
font-size:10pt; | |
} | |
.padTop10{ | |
padding-top:0px; | |
} | |
.padBottom20{ | |
padding-bottom:0px; | |
padding-top:0px; | |
} | |
.alignCenter{ | |
text-align:center; | |
} | |
.logoArea{ | |
visibility:hidden; | |
width:0px; | |
height:0px; | |
padding:0px; | |
top:0px; | |
} | |
img.logoSize{ | |
vertical-align:top; | |
height:0px; | |
width:0px; | |
} | |
.clearBoth{ | |
clear:both; | |
} | |
.radioAlways,.radioSession,.radioDeny,.checkSession,.checkAlways{ | |
text-align:center; | |
} | |
.radioAlways{ | |
padding-right:10px; | |
} | |
.radioSession{ | |
padding-left:33px; | |
} | |
.radioDeny{ | |
padding-right:12px; | |
} | |
.checkSession{ | |
padding-left:10px; | |
} | |
.checkAlways{ | |
padding-right:28px; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment