generated from jhudsl/OTTR_Template_Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
76 lines (57 loc) · 1.44 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*------------- checkbox alignment for html checkbox---------------- */
ul {
list-style-position: inside;
padding-left: 0;
font-weight: normal
}
/*------------- checkbox alignment for markdown checkbox---------------- */
input[type="checkbox"] {
margin-right: 0.5ch;
}
/*------------ buttons for links ---------------------- */
.link_button {
border-radius: 8px;
border: 1px solid #black;
background: #414487FF;
color: white !important;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
padding: 8px 16px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
}
/*------------- button link color---------------- */
.link_button a:link{
color: #fff;
}
/* To add some space below the navigation bar */
body {
margin-top: 100px;
}
/* add some color - if you want color behind a major point on your website */
.banner_color {
background-color: lightblue;
font-weight:bold;
}
/* Style buttons - if you want some text centered and bolded */
.center {
font-weight:bold;
text-align: center;
}
/* Style buttons - if you want to have a button */
.btn {
background-color: DodgerBlue;
border: none;
color: white;
padding: 8px 20px;
cursor: pointer;
font-size: 14px;
}
/* Darker background on mouse-over */
.btn:hover {
background-color: RoyalBlue;
}