-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
103 lines (88 loc) · 1.51 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
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
body {
background: #cbf1f5;
padding: 0;
margin: 0;
box-sizing: border-box;
width:100%;
}
h1 {
color: #71c9ce;
font-size: 25px;
padding: 20px 0px 5px 5px;
font-weight: bold;
}
h2 {
color: #71c9ce;
font-size: 20px;
padding: 20px 0px 5px 5px;
text-align: center;
}
.big_img {
max-width: 100%;
max-height: 100%;
padding: 15px;
display: block;
margin-left: auto;
margin-right: auto;
}
.small_img {
max-width:49%;
max-height:50%;
padding: 15px;
}
.content {
background:#e3fdfd;
padding: 10px 30px;
margin-left: auto;
margin-right: auto;
margin-top: 60px;
margin-bottom: 60px;
border: 3px;
border-style:double;
border-color: rgb(158, 211, 193);
}
.table_content {
background:#e3fdfd;
margin: 60px 10px 60px 10px;
border: 3px;
border-style: solid;
border-color: rgb(158, 211, 193);
}
.navbar-custom {
color: rgb(116, 186, 162);
font-weight: bold;
background: #a6e3e9;
}
.navbar-custom-table {
color: rgb(116, 186, 162);
font-weight: bold;
background: #a6e3e9;
}
.table_setting {
width: 100%;
}
@media (max-width: 900px) {
.table_body {
background: #e3fdfd;
}
.table_content {
background:#e3fdfd;
margin: 0px 10px 0px 10px;
border: 0px;
}
.navbar-custom-table {
color: rgb(116, 186, 162);
font-weight: bold;
background: #e3fdfd;
}
}
@media (max-width: 767px) {
body {
background: #e3fdfd;
}
.content {
background: #e3fdfd;
margin: 0px 30px 0px 30px;
border: 0px;
}
}