forked from NateWr/html-css-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.css
More file actions
123 lines (119 loc) · 2.19 KB
/
project.css
File metadata and controls
123 lines (119 loc) · 2.19 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
.first-article, .second-article, .third-article{
width: 320px;
height: 600px;
border: 1px solid #DCDCDC;
background-color: #DCDCDC;
padding: 12px;
margin:0px 16px 0px 16px;
border-radius: 8px;
text-align: justify;
box-shadow: 4px 4px 10px gray;
}
article img{
margin-left: 90px;
border-radius: 4px;
border: 1px solid gray;
padding: 5px;
}
article h1{
text-align: center;
}
article:first-child{
color: white;
background-color: indianred;
}
header{
display: flex;
align-items: baseline;
justify-content: center;
}
nav ul{
display: flex;
justify-content: space-between;
list-style-type: none;
}
nav li{
margin-right: 36px;
font-size: 24px;
}
nav a{
text-decoration: none;
text-transform: uppercase;
color: black;
}
.search :focus{
background-color: orange;
}
.search{
font-size: 18px;
border-radius: 8px;
}
nav a:hover{
color: orange;
border-bottom: 2px solid orange;
}
.form_nav{
margin-left: 90px;
width: 300px;
padding: 12px;
border-radius: 8px;
background-color: gray;
}
header > h1{
margin-right: 60px;
color: black;
height: 50px;
padding: 6px;
border-radius: 18px;
background-image: linear-gradient(to right, green, yellow, red);
}
main{
display: flex;
justify-content: flex-start;
margin-top: 24px;
}
.about{
height: 1360px;
width: 300px;
border: 1px solid gray;
border-radius: 8px;
border-top: 12px solid orange;
padding: 12px;
margin-left: 100px;
box-shadow: 3px 3px 6px gray;
}
.container_about_article{
display: flex;
}
.row{
display: flex;
position: absolute;
top: 900px;
left:50px ;
}
.column{
width: 320px;
height: 600px;
border: 1px solid orange;
margin-right: 40px;
border-radius: 8px;
box-shadow: 4px 4px 5px gray;
}
footer{
height: 300px;
background-color: black;
color: white;
margin: 50px -12px 16px -12px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
footer h1, footer p, footer a{
list-style-image: url("list.png");
}
}
footer a{
text-decoration: none;
color: lime;
}