-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
117 lines (97 loc) · 1.95 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
* {
font-family: 'Ubuntu', sans-serif;
padding: 0;
margin: 0;
}
a {
color: white;
text-decoration: none;
}
body {
background-image: linear-gradient(to right, #032900, #000);
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container {
background-image:
linear-gradient(to right, #032900a1 30%, #000000c4),
url(tf7.jpg);
width: 100%;
background-size: cover;
background-position: center;
height: 600px;
}
.container:hover {
background-image:
linear-gradient(to right, #032900a1 30%, transparent),
url(tf7.jpg);
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
width: 100%;
}
.logo {
font-size: 30px;
text-transform: uppercase;
}
ul {
list-style: none;
width: 50%;
display: flex;
justify-content: space-evenly;
}
ul a {
border-bottom: 2px solid transparent;
}
ul a:hover {
border-bottom-color: white;
cursor: pointer;
color: #c1a5a5;
}
.content {
color: white;
width: 50%;
margin-top: 50px;
padding: 30px;
}
.content h2 {
font-size: 100px;
text-transform: uppercase;
}
.content p {
width: 450px;
padding: 20px 0;
}
.content button {
font-size: 30px;
padding: 6px 10px;
border-radius: 10px;
border: 2px solid transparent;
}
.content button:hover {
background-color: transparent;
border-color: white;
color: white;
cursor: pointer;
}
@media (min-width:950px) and (max-width:1150px) {}
@media (max-width:950px) {
.container {
width: 100%;
background-size: cover;
background-position: 80%;
height: 100vh;
}
.logo,
header {
flex-direction: column;
flex-wrap: wrap;
}
}