-
Notifications
You must be signed in to change notification settings - Fork 0
/
headerStyle.css
88 lines (73 loc) · 1.12 KB
/
headerStyle.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
*
{
box-sizing: border-box;
}
body
{
margin: 0px;
background-color: none;
}
div.nav
{
float: left;
width: auto;
background-color: #f44336;
padding-top: 60px;
margin: 0px;
position: fixed;
height: 100%;
}
div.header
{
/*float: left;*/
text-align: center;
padding: 0px;
width: auto;
transition: transform.2s;
height: auto;
margin-right: 50px;
}
div.header:hover
{
transform: scale(1.1);
}
div.header h1
{
margin: 0px;
margin-left: 40px;
}
div h1 a
{
font-size: 50px;
font-family: "arial";
font-weight: bolder;
font-variant-caps: small-caps;
text-decoration: none;
color: white;
}
div.user_login
{
margin-top: 100px;
width: 300.5px;
text-align: center;
}
div.user_login a
{
display: block;
padding-top: 10px;
padding-bottom: 10px;
font-size: 23px;
font-family: "Poppins", sans-serif;
font-weight: bold;
color: white;
text-align: left;
padding-left: 50px;
text-decoration: none;
}
div.user_login a:hover
{
color: black;
background-color: white;
margin-left: 10px;
margin-right: 10px;
}