-
Notifications
You must be signed in to change notification settings - Fork 19
/
styles.css
85 lines (81 loc) · 1.22 KB
/
styles.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
* {
box-sizing: border-box;
}
body {
color: #5f5f5f;
font-family: sans-serif;
letter-spacing: 2px;
}
a {
text-decoration: none;
}
.header {
width: 100%;
height: 30px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #ccc;
}
.home {
text-decoration: none;
margin-left: 10px;
font-weight: bold;
color: #5f5f5f;
}
.nav {
display: flex;
justify-content: flex-end;
align-items: center;
}
.nav a {
text-decoration: none;
margin-left: 10px;
font-weight: bold;
color: #5f5f5f;
}
.nav a:hover {
color: #ffa500;
}
.hero,
.current,
.websites {
padding: 3em 0;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.hero-title,
.current-title,
.websites-title {
font-size: 3em;
margin: 0;
}
.hero-text,
.current-text,
.websites-text {
margin: 10px;
font-weight: bold;
font-size: 1.5em;
}
.hero-text-bold,
.current-text-bold,
.websites-text-bold {
margin: 10px;
color: #ffa500;
font-size: 2em;
font-weight: bold;
}
.current {
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
.current-link {
margin-top: 20px;
font-size: 2em;
}
.websites {
align-items: flex-start;
}