-
Notifications
You must be signed in to change notification settings - Fork 0
/
coding.css
97 lines (83 loc) · 1.72 KB
/
coding.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
body{
background-color: #2D444F;
}
p{
color: #EB5E55;
padding-left: 50px;
font-family: 'muli';
font-size: 20px;
margin-left: 100px;
margin-right: 100px;
line-height: 2px;
}
h1{
color: #ffffff;
padding-left: 50px;
font-family: 'times new roman';
font-size: 33px;
text-transform: uppercase;
text-align: center;
margin-left: 100px;
margin-right: 100px;
}
h2{
text-indent: 50px;
text-align: justify;
letter-spacing: 1px;
color: #B3C0A4;
font-size: 15px;
padding-left: 50px;
font-family: 'verdana';
margin-left: 100px;
margin-right: 100px;
}
ul {
list-style-type: none;
}
center{
color: #ffffff;
font-size: 40px;
margin-top: 30px;
/* color for the header for FRIST */
}
.sidenav {
height: 100%;
width: 0px;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #2D444F; /* the color for the backround menu*/
overflow-x: hidden;
transition: 0.5s;
padding-top: 16px;
}
.sidenav a {
padding: 30px 8px 6px 16px; /*the spacing of the buttons inside nav*/
text-decoration: none;
font-size: 23px;
font-family: 'Arial Black', Gadget, sans-serif;
color: #ffffff; /*sidenav letter color*/
display: block;
transition: 0.3s;
}
.sidenav a:hover {
color: #324A5F;
/* the color for the oving over the words in the menue bar*/
}
.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 30px;
margin-left: 50px;
margin-top: 10px
}
#main {
transition: margin-left .5s;
padding: 0px 10px; /*letters text position left */
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}