-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
90 lines (74 loc) · 1.1 KB
/
index.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
/*
bg: #112530
lemon: #fed700
leaf1: #1f823f
leaf2: #176861
*/
*{
margin:0;
padding:0;
}
html,body{
min-height: 100%;
}
html{
width:100%;
background: #112530;
background-image: url(https://upload.wikimedia.org/wikipedia/commons/5/5b/Hypercam_2_watermark.png), url(/lemons.jpg);
background-repeat: no-repeat, repeat;
background-attachment: fixed;
color: black;
display: grid;
justify-content: space-around;
}
body{
font-family:sans-serif;
line-height: 1.5;
}
header {
display: flex;
justify-content: space-around;
}
h1{
font-size:24px;
line-height:36px;
margin:0 0 18px;
}
h3{
font-size:12px;
line-height:18px;
}
.logo{
display: flex;
}
.logo img {
height: 90px;
}
ul {
padding-left: 1.5em;
padding-bottom: 0.5em;
}
header, section{
background:#1f823f;
border: 10px double #fed700;
border-radius: 20px;
margin: 2em;
padding: 2em;
}
header h3{
font-size:36px;
line-height:36px;
margin-left:3px;
}
header h1{
font-size:70px;
line-height:54px;
margin-bottom:0;
letter-spacing:-5px;
}
a{
color: #ffe550;
}
a:hover{
text-decoration: dashed;
}