-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.css
137 lines (126 loc) · 1.78 KB
/
home.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
nav{
position: fixed;
top:0;
left: 0;
width: 100%;
height: 7rem;
padding: 10px 60px;
box-sizing: border-box;
transition: .5s;
z-index: 5;
opacity: 1;
background-color: black;
}
.menu-icon
{
width: 80%;
float:left;
}
nav ul{
float: right;
margin: 0;
padding: 0;
display: flex;
}
nav ul li
{
list-style: none;
margin-top: 25px;
line-height: none;
font-size: 25px;
color: white;
padding-right: 5rem;
text-decoration: none;
text-transform: uppercase;
transition: 1s;
text-shadow: 0 0 10px #000;
}
nav ul li a
{
color: white;
text-decoration-line: none;
}
nav ul li.active,
nav ul li a:hover{
color: orange;
}
body
{
margin: auto;
max-width: 800px;
width: 80%;
background: black;
}
button a
{
color: #38c708;
}
.buttons
{
width: 30%;
height: 50px;
font-family: 'Rajdhani', sans-serif;
text-transform: uppercase;
background: black;
font-size: 25px;
border: 2px solid #38c708;
}
button:nth-of-type(1)
{
margin: 2rem 5rem;
}
button:nth-of-type(2)
{
margin: 0.5rem 10rem;
}
button:nth-of-type(3)
{
margin: 2rem 15rem;
}
#logo
{
margin: auto;
padding-left: 2rem;
width: 7rem;
}
div img
{
margin: 8% 25%;
width: 25rem;
}
h1
{
margin-top: 100px;
text-align: center;
font-size: 50px;
font-family: 'Orbitron', sans-serif;
text-transform: uppercase;
color: #c92808;
}
hr
{
height: 30px;
border-style: solid;
border-color: #8c8b8b;
border-width: 1px 0 0 0;
border-radius: 20px;
}
hr:before
{
display: block;
content: "";
height: 30px;
margin-top: -31px;
border-style: solid;
border-color: #8c8b8b;
border-width: 0 0 1px 0;
border-radius: 20px;
}
.content
{
font-family: 'Raleway', sans-serif;
border-left: 10px solid green;
padding-left: 20px;
color: #38c708;
font-size: 25px;
}