-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmainstyle.css
117 lines (92 loc) · 1.68 KB
/
mainstyle.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
html {
background:black;
color:white;
}
body {
font-family: arial,sans-serif;
height: 100%;
display: flex;
flex-direction: column;
margin: 0;
}
.header, .footer {
height: 35px;
text-align:right;
padding-right: 30;
padding: 10 10 10 10;
}
.footer {
background-color:#222;
}
/* header and footer blocks links */
.block_list {
list-style-type: none;
margin: 0;
padding: 0;
}
.block_list li {
float: right;
}
.block_list .orient_left {
float: left;
}
.block_list a {
color:#ddd;
display: inline-block;
padding: 6px;
margin-right:10;
text-decoration: none;
}
.block_list a:hover {
text-decoration: underline;
}
/*********************************/
.center_elements {
flex: 1;
margin:auto;
display:block;
clear: both;
width:35%;
text-align:center; /* needed even for IMG to be perfectly aligned. ikr? */
}
#bsignin {
color: #FFF;
background-color: #0095ff;
border: 1px solid #4285f4;
font-weight: bold;
outline: none;
display: inline-block;
line-height: 28px;
padding: 0 12px;
border-radius: 2px;
}
#img_squares {
padding-top:4px;
height: 15px;
width: 15;
}
#logo{
padding-top:100px;
width:50%;
}
#search_box {
content: "";
width: 100%;
padding: 10 10 10 10;
margin-top:20px;
box-shadow: 0px 0px 10px 3px rgba(255,255,0,1);
}
.center_elements input[type="button"] { /* instead of giving class to each button, i wrap it in div and access the buttons from there */
height: 36px;
background-color: #f2f2f2;
border: 1px solid #f2f2f2;
border-radius: 2px;
color: #757575;
font-family: arial,sans-serif;
font-size: 13px;
font-weight: bold;
margin: 11px 4px;
min-width: 54px;
padding: 0 16px;
text-align: center;
}