-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
117 lines (97 loc) · 1.95 KB
/
styles.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
body {
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
background-color: #c2d6d6;
}
header {
background-color: gray;
width: 100%;
height: 41px;
overflow: hidden;
}
#blocklinks {
background-color: #94b8b8;
height: auto;
width: auto;
color: #333;
border-radius: 5px;
margin-left: 6px;
padding-left: 4px;
padding-right: 4px;
text-decoration: none;
text-align: center;
display:inline-flex;
cursor: pointer;
font-size: 30px;
}
input {
float: right;
text-align: left;
padding: auto;
text-decoration: none;
font-size: 17px;
width: 200px;
height: 27px;
border-radius: 5px;
border-style: none;
margin-top: 6px;
margin-right: 40px;
}
#icon {
background-color: #94b8b8;
border-radius: 5px;
height: 30px;
width: 70px;
}
div.scrollmenu {
overflow: auto;
width: 100%;
white-space: nowrap;
display: inline-block;
height: 270px;
}
#pic {
box-shadow: 10px 15px 15px gray;
height: 220px ;
width: 160px ;
border-radius: 15px;
margin: 20px;
display: inline-block;
}
#pic.img.hover {
box-shadow: 10px 15px 15px gray;
height: 225px ;
width: 165px ;
border-radius: 15px;
margin: 20px;
}
#headline {
background-color: #94b8b8;
text-align: left;
height: 40px;
width: 95%;
border-radius: 10px;
margin: 20px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
padding-left: 10px;
padding-top: 10px;
}
.bar1, .bar2, .bar3 {
width: 35px;
height: 5px;
background-color: #94b8b8;
margin: 6px 0;
transition: 0.4s;
border-radius: 3px;
}
.container {
display: inline-block;
cursor: pointer;
margin-left: 8px;
}
.change .bar1 {
transform: translate(0, 11px) rotate(-45deg);
}
.change .bar2 {opacity: 0;}
.change .bar3 {
transform: translate(0, -11px) rotate(45deg);
}