-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
90 lines (77 loc) · 1.32 KB
/
style.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
body {
background-color: #222;
color: #fff;
font-family: "Noto Sans", sans-serif;
margin: 0;
height: 100vh;
overflow: hidden;
}
nav {
padding: 10px;
display: flex;
justify-content: center;
margin-top: 10px;
}
.menu {
list-style: none;
display: flex;
margin: 0;
padding: 0;
}
.menu li {
margin: 0 10px;
}
.menu li a {
color: #fff;
text-decoration: none;
transition: all 0.3s ease-in-out;
border: 2px solid transparent;
border-radius: 10px;
padding: 8px 12px;
}
.menu li a:hover {
border-color: #777;
}
.main-content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
margin-top: -20px;
}
h1 {
font-size: 60px;
position: relative;
z-index: 1;
margin-top: 0;
font-family: 'Montserrat', sans-serif;
margin-bottom: 5px;
}
p {
font-family: 'Noto Sans', sans-serif;
}
.welcome-text {
font-size: 20px;
margin-top: 0px;
}
.description {
font-size: 14px;
margin-top: 10px;
}
.view-button {
display: inline-block;
padding: 10px 20px;
background-color: transparent;
color: #fff;
border-radius: 10px;
text-decoration: none;
margin-top: 20px;
border: 2px solid #777;
transition: background-color 0.3s, color 0.3s;
}
.view-button:hover {
background-color: #555555;
color: #fff;
}