-
Notifications
You must be signed in to change notification settings - Fork 5
/
style1.css
116 lines (91 loc) · 2.02 KB
/
style1.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
/*buttons in table*/
.btn {
background-color: #f4511e;
border: none;
color: white;
padding: 10px 30px;
text-align: center;
font-size: 13px;
margin: 3px 1px;
opacity: 0.6;
transition: 0.3s;
display: inline-block;
text-decoration: none;
cursor: pointer;
outline: none;
}
.btn-acc {
background-color: cornflowerblue;
border: none;
color: white;
padding: 10px 30px;
text-align: center;
font-size: 13px;
margin: 3px 1px;
opacity: 0.6;
transition: 0.3s;
display: inline-block;
text-decoration: none;
cursor: pointer;
outline: none;
}
.btn:hover {opacity: 1}.btn-acc:hover {opacity: 1}
/* Table Styles */
.fl-table {
border-radius: 5px;
font-size: 20px;
font-weight: normal;
border: none;
border-collapse: collapse;
width: 100%;
max-width: 100%;
white-space: nowrap;
background-color: white;
}
.fl-table td, .fl-table th {
text-align: center;
padding:20px 8px;
}
.fl-table th {
color: #ffffff;
background: #324960;
padding: 20px 8px;
}
.fl-table td {
border-right: 1px solid #f8f8f8;
font-size: 15px;
}
.fl-table tr:nth-child(even) {
background: #F8F8F8;
}
/*readmore in event page*/
.readmore {
display:block;
text-align: center;
color: white;
background-color:dodgerblue ;
padding :10px 10px;
text-decoration: none;
width:100px;
margin-left: 115px;
outline: none;
}
/*nav bar */
.home-body-nav {
background:#2d545e;
overflow:hidden;
}
.home-body-nav a{
float: left;
color: #f2f2f2;
text-align: center;
padding: 20px 20px 20px;
text-decoration: none ;
font-size:18px;
transition: 0.3s;
}
.home-body-nav :hover{
font-size:20px;
color: white;
}
/* css for add rooms */