-
Notifications
You must be signed in to change notification settings - Fork 0
/
my.css
76 lines (63 loc) · 982 Bytes
/
my.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
body{
width: 80%;
margin:auto;
background: magenta;
color: white;
font-family: aril, verdina, sens-serif;
}
header{
}
header ul{
background: red;
border:5px solid teal;
margin: 2px;
box-shadow: 4px 3px 2px black;
}
header ul li {
display: inline-block;
padding: 20px;
}
header ul li a {
text-decoration: none;
color: yellow;
}
header ul li a:hover {
color: inherit;
transition: 1s;
}
.farhad{
overflow: hidden;
}
.farhadm{
background: lightblue;
color: black;
width:70%;
float: left;
box-shadow: 5px 6px 10px black;
box-sizing: border-box;
}
.farhad aside {
background: yellow;
color: blue;
overflow: hidden;
width: 30%;
float: left;
box-shadow: 5px 6px 10px black;
padding-bottom: 250px;
padding-top: 250px;
text-align: center;
}
footer {
clear: both;
background: #eee;
border: 3px solid green;
color: teal;
padding: 30px;
text-align: center;
box-shadow: 5px 6px 10px black;
}
article{
border: 3px solid magenta;
box-shadow: 5px 6px 10px black;
padding: 40px;
}