-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles1.css
More file actions
102 lines (87 loc) · 1.58 KB
/
styles1.css
File metadata and controls
102 lines (87 loc) · 1.58 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
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif
}
.sideMenu {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background: #010916;
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
}
.sideMenu a {
padding: 8px 8px 8px 32px;
text-decoration: none;
color: #fff;
display: block;
transition: 0.3s;
font-size: 18px;
margin-bottom: 20px;
text-transform: uppercase;
font-weight: bold;
}
.sideMenu .closeBtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
.mainMenu h2 {
text-align: center;
letter-spacing: 7px;
color: #fff;
background: #4442e7;
padding: 20px 0;
}
.mainMenu a:hover {
color: #fff;
background: #4655e4;
}
.contentArea {
transition: margin-left 0.5s;
padding: 16px;
}
.open-icon {
font-size: 30px;
cursor: pointer;
}
.contentText {
padding: 100px 20px;
text-align: center;
}
.contentText h2 {
background: #010713;
display: inline-block;
padding: 15px 10px;
text-transform: uppercase;
font-size: 24px;
color: #fff;
}
.contentText h3 {
text-transform: uppercase;
font-size: 18px;
margin: 0;
letter-spacing: 3px;
}
@media screen and (min-width: 768px) {
.contentText {
padding: 100px 180px;
}
.contentText h2 {
padding: 15px 35px;
font-size: 50px;
}
.contentText h3 {
font-size:45px;
}
}
.open-icon:hover {
background-color:lightgrey;
border-radius: 50%;
}