-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (103 loc) · 1.55 KB
/
style.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
118
119
120
121
* {
margin: 0;
padding: 0;
font-family: 'Mulish', sans-serif;
}
a {
text-decoration: none;
color: inherit;
}
nav {
background-color: #b2ebf2;
width: 100%;
padding: 15px 0;
text-align: end;
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 1030;
box-shadow: 0 .1rem 0.6rem rgba(0, 0, 0, .15)!important;
}
nav a {
padding: 15px 15px;
}
nav a.active {
background-color: #46ddf0;
color: white;
padding: 15px
}
ul {
display: inline-flex;
list-style: none;
}
li {}
h2 {
text-align: center;
padding: 35px 0 20px 0;
margin-top: 50px;
}
#xyz {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.card {
box-shadow: 1px 1px 10px #c5ebf082;
background-color: #b2ebf2;
min-height: 200px;
min-width: 250px;
margin: 20px;
padding: 20px;
border-radius: 5px;
}
.card div {
margin-bottom: 5px;
}
/* INPUT */
.inputblock {
display: flex;
justify-content: center;
align-items: center;
}
.inputblock input {
height: 35px;
margin-right: 15px;
border-radius: 5px;
border: 1px solid #eee;
padding-left: 10px;
}
.inputblock button {
height: 40px;
width: 100px;
background-color: #c5ebf082;
border: 0;
border-radius: 5px;
}
.inputblock input:focus,
.inputblock button:focus {
outline: 0 !important;
}
@media only screen and (max-width: 600px) {
.card {
min-width: 300px !important;
}
nav {
text-align: center;
}
ul li span {
display: none;
}
}
@media only screen and (max-width: 320px) {
.card {
min-width: 250px !important;
}
nav {
text-align: center;
}
ul li span {
display: none;
}
}