-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_style.css
111 lines (105 loc) · 2.27 KB
/
index_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
body{
/*font-family: Cambria, Cochin, Georgia, Times, Times New Roman, serif;
font-size: 15px;
line-height: 1.5; */
font: 15px/1.5 Cambria, Cochin, Georgia, Times, Times New Roman, serif;
padding: 0;
margin: 0;
background-color: #f4f4f4;
}
.container{
width: 100%;
overflow: hidden;
}
header{
background-color: lightgoldenrodyellow;
min-height: 70px;
}
header #logo-image{
float: left;
}
header #tagline{
padding: 0 20px 0 20px;
float: right;
margin-top: 20px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
color: gray;
}
input[type=text],[type=email],[type=password] {
width: 500px;
padding: 10px 20px;
margin: 5px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
font-size: 20px;
font-family: Cambria, Cochin, Georgia, Times, Times New Roman, serif;
}
input:focus {
border: 3px outset lightgreen ;
}
button[type=submit] {
width: 500px;
background-color: #54C059;
color: white;
padding: 10px ;
margin: 5px 0;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 20px;
font-family: Cambria, Cochin, Georgia, Times, Times New Roman, serif;
}
button[type=submit]:hover {
background-color: #329136;
}
h1 {
line-height: 40px;
color: #1BB7EB;
text-transform: capitalize;
font-family: Cambria, Cochin, Georgia, Times, Times New Roman, serif;
font-size: 30px;
font-weight: bold;
padding-bottom: 10px;
}
h2{
line-height: 0;
}
#boxes{
margin-top: 0;
}
#boxes .box {
float: left;
text-align: center;
padding-right: 10px;
margin-right: 80px;
margin-left: 80px;
}
footer {
padding: 1px;
margin-top: 20px;
background-color: #7C7979;
text-align: center;
font-weight: bold;
color: white;
}
/* Media queries */
@media(max-width: 768px ){
input[type=text],[type=email],[type=password] {
width: 100%;
}
button[type=submit] {
width: 100%;
}
}
/*.nav a{
text-decoration: none;
padding-left: 10px;
padding-right: 10px;
color: white;
font-family: "Segoe UI",Arial,sans-serif;
font-size: 15px;
font-weight: bold;
text-transform: uppercase;
} */