-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboardstyle.css
More file actions
166 lines (140 loc) · 2.78 KB
/
dashboardstyle.css
File metadata and controls
166 lines (140 loc) · 2.78 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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
body {
background-image: url("slideshow/kaka11.jpg");
background-repeat: no-repeat;
background-size: 100%;
background-attachment: fixed;
background-position: 0 11.5vh;
}
.main1 {
display: flex;
flex-flow: column wrap;
align-items: center;
margin-top: 11.55vh;
height: 88.45vh;
}
.main1 div {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
align-items: center;
margin: 10px;
margin-bottom: 0px;
background-color: rgba(240,240,240,0.8);
padding: 50px;
width: 91%;
}
.main1 div div {
display: flex;
flex-flow: row;
justify-content: flex-start;
align-items: center;
/*background-color: rgba(240,240,240,0.8);*/
width: 18%;
padding:0;
margin: 0;
margin-bottom: 2%;
height: 0px;
}
.main1 div div>h1 {
display: inline;
text-decoration: underline;
/*background-color: rgba(240,240,240,0.8);*/
text-align: center;
height: 30px;
margin: 0;
cursor: pointer;
}
.main1 div .arrow{
display: inline;
float: left;
background: url("Icons/right2.png") no-repeat 98% center;
width: 30px;
height: 40px;
background-size: 30px;
cursor: pointer;
margin-top: 15px;
transition: all 1s;
}
.main1 div div:hover .arrow, .arrow:hover{
transform: rotate(360deg);
}
.main1 div button {
display: flex;
width: 200px;
height: 100px;
justify-content: center;
background-color: rgba(0,0,0,0.8);
font-family: "Roboto Slab";
color: white;
border: none;
}
/*Media Queries*/
@media screen and (max-width: 1100px) {
.main1 {
margin-top: 0;
background-image: url("slideshow/kaka11-1000.jpg");
}
@media screen and (max-width: 975px) {
.main1 {
margin-top: 0;
background-image: url("slideshow/kaka11-635.jpg");
}
.main1 div div {
width: 100%;
height: 10%;
background-color: rgba(240,240,240,0.8);
}
.main1 div div>h1 {
background-color: rgba(230,230,230,0.8);
}
}
}
@media screen and (max-width: 630px) {
.main1 {
margin-top: 0;
background-image: none;
}
.main1 div {
flex-flow: column;
align-items: center;
background-color: rgb(230,230,230);
border: 1px solid black;
width: 37.5%;
}
.main1 div div {
border: none;
width: 70%;
}
.main1 div div>h1 {
background-color: rgb(230,230,230);
}
.main1 div .arrow {
visibility: hidden;
display: none;
transition: all 1s;
}
.main1 div .arrow:hover {
transform: rotateX(360de);
}
.main1 div button {
margin-top: 10px;
}
}
@media screen and (max-width: 500px)
{
.main1 div div {
margin-right: 35%;
}
}
@media screen and (min-height: 760px) and (min-width: 630px) {
.main1 {
background-image: url("slideshow/kaka2800.jpg");
/*margin-top: 7.8vh;*/
}
}
/*
@media screen and (min-height: 700px) and (max-height: 759px) {
.main1 {
margin-top: 11vh;
}
}*/