-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
85 lines (71 loc) · 1.09 KB
/
css.css
File metadata and controls
85 lines (71 loc) · 1.09 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
* {
box-sizing: border-box;
}
body {
font-family: Arial;
margin: 0;
}
h1 {
border: 3px solid whitesmoke;border-radius: 12px;
padding: 5px;font-family: courier;
}
.ra{
font-family: Garamond, serif;
color: #990000;
}
.header {
font-size: 220%;
padding: 300px;
text-align: left;
background: url('6666.jpg');
background-size: cover;
background-position: center top;
color: white;
}
p {
text-align: justify;
font-size: 50px;
}
.navbar {
display: flex;
background-color: #333;
}
.navbar a {
color: white;
padding: 14px 20px;
text-decoration: none;
text-align: center;
}
.navbar a:hover {
background-color: #ddd;
color: black;
}
.row {
display: flex;
flex-wrap: wrap;
}
.side {
flex: 30%;
background-color: #f1f1f1;
padding: 20px;
}
.main {
flex: 70%;
background-color: white;
padding: 20px;
}
.fakeimg {
background-color: #aaa;
width: 100%;
padding: 20px;
}
.footer {
padding: 20px;
text-align: center;
background: #ddd;
}
@media screen and (max-width: 700px) {
.row, .navbar {
flex-direction: column;
}
}