-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
93 lines (75 loc) · 1.28 KB
/
index.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
html {
font-family: "Lucida Sans", sans-serif;
}
.flex-box-container-1
{
background-color: #112B3C;
color: white;
height: 5%;
display: flex;
justify-content: center;
align-items: center;
}
.flex-box-container-2
{
padding: 10px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
}
.flex-box-container-2-1
{
width: 30%;
}
.flex-box-container-2-1 > div
{
background-color: #33b5e5;
margin-top: 2px;
padding: 15px;
color: #ffffff;
text-align: center;
font-size: 14px;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.flex-box-container-2-1 > div:hover
{
background-color: #0099cc
}
.flex-box-container-2-2
{
width:60%;
}
.flex-box-container-2-3
{
background-color: #0099cc;
color: #ffffff;
text-align: center;
font-size: 12px;
padding: 15px;
width: 100%;
margin-top: 10px;
}
@media (max-width: 600px)
{
.flex-box-container-2-1
{
width: 100%;
}
.flex-box-container-2-2
{
width:100%;
}
.flex-box-container-2-3
{
width: 100%;
}
}
.flex-box-container-3
{
display: flex;
padding : 15px;
font-size: 14px;
background-color: #0099cc;
justify-content: center;
}