-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathhome.css
146 lines (132 loc) · 3.04 KB
/
home.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
body {
background-image: url("doctor.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100%;
}
.medictab { /*MedicInfo Header Class*/
max-width: 100%;
background-color: #E4F1F7;
position: relative;
top: 0px;
left: 0px;
right: 0px;
}
.medictab span { /* Formatting MedicInfo word under Header*/
font-size: 60px;
font-family: "comic sans MS",cursive,sans-serif;
font-style: italic;
font-weight: bold;
color: #30CF05;
text-decoration: underline;
text-shadow: 1px 1px 1px #92F776;
margin-left: 10px;
margin-top: 15px;
margin-bottom: 25px;
}
.medictab input[type="text"] { /*Style for Search tab*/
border-color: #078A01;
border-radius: 5px;
padding: 10px;
border-style: solid;
position: absolute;
top: 22px;
right: 73px;
opacity: 0.8;
transition: border-color 0.2s linear;
}
.medictab input[type="text"]:focus { /* Transition of search tab*/
border-color: #0B7103;
border-radius: 5px;
opacity: 1;
}
.medictab input[type="submit"] {
border-radius: 3px;
color: darkblue;
position: absolute;
top: 22px;
right: 5px;
padding: 10px;
background-color: powderblue;
border: 2px solid darkgreen;
}
.medictab input[type="submit"]:hover {
background-color: darkblue;
color: powderblue;
cursor: pointer;
}
.medictab ul { /* Navigation bar list type*/
list-style-type: none;
background-color: #BDFCD1;
margin: 0px;
padding: 0px;
overflow: hidden;
}
.medictab li {
float: left;
}
.medictab li a, .dropbtn { /*Vertical Navigation text coloring/formatting */
display: inline-block;
padding: 15px;
color: #0B7103;
text-decoration: none;
font-size: 18px;
transition: background-color 0.3s ease-in;
}
.medictab li a:hover, .dropdown:hover .dropbtn {
background-color: #0B7103;
color: white;
}
#flr { /* Floating some elements with id flr to float right*/
float: right;
}
.medictab li a.active {
background-color: #0B7103;
color: white;
}
.home { /* Home page information*/
margin-top: 60px;
max-width: 70%;
}
.home h2,h4 { /*formatting heading*/
font-family: "Lucida Sans Unicode","Lucida Grande",sans-serif;
color: #006B42;
padding: 10px;
}
.home p {
border-bottom: 2px solid #3FAEFF;
font-size: 18px;
font-family: "Trebuchet MS", Helvetica, sans-serif;
font-style: italic;
}
.home h3 {
font-family: "Comic Sans MS",cursive,sans-serif;
border-bottom: 3px solid #F98746;
color: #005DA2;
font-size: 25px;
}
li.dropdown {
display: inline-block;
}
li .dropctn {
display: none;
background-color: #0DB4FE;
position: absolute;
min-width: 150px;
box-shadow: 0px 8px 16px 0px #D5F2FF;
border-radius: 4px;
}
li .dropctn a { /* DROPDOWN MENU */
color: #F2FBFF;
padding: 12px 14px;
text-decoration: none;
display: block;
text-align: left;
}
li .dropctn a:hover {
background-color: #F2FBFF;
color: #0DB4FE;
}
li.dropdown:hover .dropctn {
display: block;
}