forked from Ontraport/frontend-interview-test-short
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
96 lines (69 loc) · 1.73 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
/*
* base styles
*
*/
html{
height: 100%;
}
body{
background: rgb(167,199,220); /* Old browsers */
background: -moz-linear-gradient(top, rgba(167,199,220,1) 0%, rgba(133,178,211,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(167,199,220,1)), color-stop(100%,rgba(133,178,211,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(167,199,220,1) 0%,rgba(133,178,211,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(167,199,220,1) 0%,rgba(133,178,211,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(167,199,220,1) 0%,rgba(133,178,211,1) 100%); /* IE10+ */
background: linear-gradient(top, rgba(167,199,220,1) 0%,rgba(133,178,211,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a7c7dc', endColorstr='#85b2d3',GradientType=0 ); /* IE6-9 */
font-size: 13px;
min-width: 800px;
}
br{
clear: left;
}
#header{
background: rgba( 0, 0, 0, 0.7);
padding: 10px 5px;
box-shadow: 0px 1px 5px #fff;
}
/*logo in header*/
#logo{
display: inline-block;
float: left;
}
/*search in header*/
#search{
display: inline;
float: left;
left: 50%;
margin-left: -25%;
position: relative;
width: 500px;
margin-top: 1em;
}
#search input[name="post"]{
width: 300px;
padding: 2px 3px;
border: 2px solid #A2C4DA;
font-size: 1.2em;
}
#search button{
padding: 4px;
vertical-align: top;
font-weight: bold;
text-shadow: 1px 1px 1px #fff;
border: 1px solid #6FD6F7;
}
/*page content*/
#page{
width: 800px;
background: rgba( 255, 255, 255, 0.3 );
border: 1px solid #ffffff;
margin: 10px auto 0px;
padding: 1em 2em;
}
.rand1{
}
.rand2{
}
.rand3{
}