-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
132 lines (128 loc) · 2.43 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
* {
padding: 0;
margin: 0;
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body {
background: #000 url(./img/white-metal-grid.png) space fixed left bottom;
}
div.footer h3 {
color:#FFFAED ;
}
a:link{
text-decoration: none;
color: #FFFAED ;
}
a:visited{
text-decoration: none;
color: #FFFAED ;
}
div.stroke {
background-color: #262626;
height: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
div.header div.menu {
width: 70%;
}
div.header{
background-color: #BF1725;
display: flex;
height: 100px;
justify-content: space-between;
align-items: center;
}
div.header ul {
display: flex;
justify-content: space-between;
}
div.logo{
color: white;
margin-left: 20px;
}
div.menulogo{
color: white;
margin-right: 20px;
}
div.header ul li {
display: inline;
font-size: 23px;
}
div.header ul li:hover {
text-decoration:underline;
}
div.content {
background: url(./img/mac.jpg);
}
div.subcontent{
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(0, 0, 0, 0.5);
width: 100%;
height: 100%;
}
div.subcontent div.first_block{
width: 30%;
margin-bottom: 100px;
}
div.subcontent div.first_block h2 {
font-size: 70px;
color: #FFFAED;
}
div.subcontent div.first_block p {
margin-top: 10px;
background-color: rgba(255, 255, 255, 0.5);
color: rgb(107, 107, 107);
font-weight: bold;
width: 30%;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
border-radius: 20px;
font-size: 20px;
margin-left: 100px;
transition: 1s;
}
div.subcontent div.first_block p:hover {
background-color: rgba(255, 255, 255, 0.8);
color: rgb(0, 0, 0);
transition: 1s;
}
div.subcontent div.second_block{
width: 50%;
}
div.footer {
height: 100px;
background-color: #262626;
}
h3{
padding-top: 30px;
text-align: center;
}
div.footer {
position: static;
bottom: 0;
width: 100%;
flex-direction: column;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
div.content {
height: 750px;
}
div.menulogo img.icons {
color: white;
}
div.subheader {
background-color: rgba(190, 185, 191, 0.5);
text-align: center;
}
div.subheader h1,p{
padding: 15px;
color: #262626;
}
div.subheader p {
font-size: 25px;
}
div.subheader h1{
font-size: 40px;
font-weight: 900;
}