-
Notifications
You must be signed in to change notification settings - Fork 0
/
kaisaf.css
108 lines (107 loc) · 1.8 KB
/
kaisaf.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
108
body {
background-color: white;
color: black;
font-family: "Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;
}
header {
background-image:
url("http://upload.wikimedia.org/wikipedia/commons/2/2f/Pano_from_Aiguille_du_Midi_03.jpg");
background-size: cover;
border-radius: 20px;
text-align: center;
color: white;
font-size: 32px;
font-family: 'Lobster', cursive;
padding: 10px 0 0 0;
}
header li {
display: inline;
text-align: center;
padding: 0px 20px 0px 20px;
font-size: 28px;
color: white;
}
ul {
padding: 10px;
background: rgba(0,0,0,0.3);
border-radius: 20px;
color: white;
}
p {
color: black;
font-size: 24px;
text-align: center;
margin-top: 50px;
}
p small {
font-style: italic;
}
a {
color: white;
}
li {
display: inline;
text-align: left;
line-height: 28px;
padding: 10px;
}
img {
float: left;
border-radius: 20px;
margin: 0 35px 0 35px;
}
.contact {
margin: auto;
margin-bottom: 50px;
}
.contact a {
color: blue;
}
.about {
text-align: center;
}
.about h2 {
font-size: 24px;
}
.about p {
font-size: 18px;
font-family: helvetica, sans-serif;
margin: 0 35px 0 0;
line-height: 24px;
}
footer {
background: silver;
text-align: center;
border-radius: 20px;
padding: 10px;
}
footer a {
color: blue;
}
@media(max-width: 500px) {
li {
display: block;
}
header {
font-size: 20px;
}
header li {
font-size: 16px;
}
p {
font-size: 16px;
}
.about p {
font-size: 12px;
}
.about h2 {
font-size: 18px;
}
li {
line-height: 0;
font-size: 12px;
}
footer {
padding: 0;
}
}