-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (101 loc) · 1.78 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
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
*{
padding: 0;
margin: 0;
}
body{
background-repeat: no-repeat;
background-size: cover;
}
img{
margin-left: 10%;
margin-top: 14px;
}
header{
background-color: black;
height: 5em;
}
.head_tag{
float: right;
margin-top: 20px;
margin-right: 35px;
}
.head_tag a{
text-decoration: none;
color: white;
border: 1px solid white;
padding: 8px;
margin-right: 8px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.head_tag a:hover{
background-color: turquoise;
color: black;
transition: 0.5s ease-in-out;
}
.aside{
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: white;
padding: 100px;
}
.aside li{
list-style: square;
margin-bottom: 8px;
}
.login{
float: right;
border: 2px solid red;
background-color: beige;
height: 15em;
margin-top: 5%;
margin-right: 2%;
padding: 25px;
}
.login h2{
text-align: center;
}
.login input{
height: 1.5em;
}
.button {
width: 100%;
height: 1.8em;
color: white;
background-color:dodgerblue ;
border: 1px solid dodgerblue;
}
/* P-Box*/
.container{
border: black;
margin-top: 7%;
margin-left: 2%;
}
.p-box{
border: 2px solid white;
width: 23%;
float: left;
margin-left: 10px;
height: 15em;
padding: 5px;
background-color: blanchedalmond;
}
.p-box h3{
text-align: center;
text-transform: uppercase;
}
.p-box p{
line-height: 1.25em;
text-align: center;
}
.p-box a{
text-decoration: none;
color: red;
}
footer{
background-color: black;
color: white;
margin-top: 33%;
height: 2em;
}
footer h5{
text-align: center;
}