-
Notifications
You must be signed in to change notification settings - Fork 3
/
Style.css
74 lines (73 loc) · 1.17 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
h1{
font-size: 70px;
font-family: COURIER;
font-weight: bold;
color: white;
grid-column: 2;
grid-row: 1;
text-align:top;
align-self: top;
justify-self:top;
}
body{
background-image:url("a.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
}
#Content{
display: grid;
grid-template-columns: repeat(11,1fr);
/*max-width: 960px;*/
margin: 0 auto;
/*grid-column: 2/3;*/
}
#one{
border-radius: 15px;
grid-column: 4/8 ;
grid-row: 2;
background-color: rgba(55, 55, 55, 0.5);
padding: 10px;
text-align: center;
color:white;
}
#details{
display:grid;
grid-template-columns: 1fr 1fr;
grid-gap: 10px;
align-items: center;
}
#details p{
text-align: left;
padding-left: 40px;
font-size: 20px;
}
.input{
height: 20px;
}
.login{
height: 30px;
width: 100px;
border-radius: 5px;
}
.login:hover{
box-shadow: 0 12px 16px 0 rgba(255,255,255,0.24),0 17px 50px 0 rgba(255,255,255,0.19);
}
h2{
font-size: 36px;
}
footer{
text-align: center;
color:white;
}
#logo{
height:70px;
width: 110px;
padding: 10px;
grid-column: 1/2;
align-items: right;
align-self: top;
justify-self: top;
}
#userdata p{
color: white;
}