-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (107 loc) · 1.74 KB
/
style.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
body {
width: 100%;
}
#comp_name {
border: solid red 50px;
width: 87%;
height: 70px;
background-color:red;
color: #00FFFF;
font-size: 100px;
font-weight: bold;
font-family: Times Roman;
text-align: center;
margin-top: 20px;
}
.table_header {
background-color: green;
}
.table_content {
color: blue;
font-size: 20px;
font-weight: bold;
vertical-align:top;
text-align: center;
}
#button_style {
height: 40px;
width: 100%;
font-size:20px;
color:#09C;
}
#main {
width: 60%;
padding-left: 30px;
border: solid black 2px;
margin-left: 19%;
background-color:#004C3D;
}
#sidebar {
float: left;
width: 18%;
}
#bestdeal {
height: 10%;
/*width: 25%;*/
font-size: larger;
background:#CF6;
color: blue;
font-size: 40px;
text-align: center;
text-decoration:blink;
margin-top: 50px;
}
#login {
width: 100%;
height: 150px;
border: 1px;
cellpadding: 0;
cellspacing: 1;
margin-left: 0px;
margin-top: 10px;
float: left;
}
.inp {
color:red;
}
.table1 {
padding-left: 12%;
width: 85%;
table-layout: fixed;
}
.table2 {
margin-left: 30%;
width: 40%;
table-layout: fixed;
}
.userOption {
width: 16%;
height: 150px;
border: 1px;
float: right;
margin-top: 150px;
padding-left: 15px;
padding-right: 10px;
padding-top: 20px;
background-color: #66FFFF;
opacity: 0.95;
}
/*Responsive design */
/* For tablets*/
@media only screen and (max-width: 959px) and (min-width: 769px), only screen and (max-device-width: 959px) and (max-device-width: 769px) {
#sidebar {
width: 15%;
}
}
/* For mobiles */
@media only screen and (max-width: 768px), only screen and (max-device-width: 768px){
#sidebar {
display: none;
}
#main {
width: 98%;
margin-left: auto;
margin-right: 1%;
font-size: 20px;
}
}