-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (87 loc) · 1.59 KB
/
style.css
File metadata and controls
101 lines (87 loc) · 1.59 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
*{
margin:0;
padding:0;
font-family: 'Rubik', sans-serif;
}
.header{
min-height:100vh;
width:100%;
background-image:linear-gradient(rgba(55,89,167,0.5), rgba(55,89,167,0.5)), url(studying.jpeg);
background-position:center;
background-size:cover;
position:relative;
}
nav {
display: flex;
padding: 4% 8%;
justify-content: space-between;
align-items: center;
}
.nav-links {
flex: 1;
text-align: right;
padding-bottom: 50px;
}
.nav-links ul li {
list-style: none;
display: inline-block;
padding: 8px 12px;
position: relative;
}
.nav-links ul li a {
color:beige;
font-size: 15px;
text-decoration: none;
}
.nav-links ul li::after {
content:'';
width: 0%;
height: 2px;
background:crimson;
display: block;
margin: auto;
transition:0.8s;
}
.nav-links ul li:hover::after {
width: 100%;
}
.text-box {
width: 80%;
color: rgb(180, 180, 163);
position: fixed;
top: 45%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.text-box h1 {
font-size: 58px;
}
.text-box p {
margin: 15px 0 50px;
font-size: 16px;
}
.container-white{
max-width: 1500px;
background: white;
margin: 0 auto;
padding: 50px;
}
.register-button {
display: inline-block;
text-decoration: none;
color: white;
border: none;
padding: 15px 32px;
font-size: 16px;
background: darkgoldenrod;
cursor: pointer;
position: relative;
}
.contact-sign {
font-size: 58px;
width:80%;
color:white;
left:80%;
top:50%;
}