-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (86 loc) · 1.65 KB
/
Copy pathstyle.css
File metadata and controls
103 lines (86 loc) · 1.65 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
h2{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 40px;
}
*{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
input{
width: 300px;
height: 65px;
outline: none;
border-radius: 5px;
border: 3px solid whitesmoke;
}
input::placeholder{
padding-left: 55px;
font-size: 22px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: gray;
}
.icon i{
font-size: 40px;
}
.icon{
margin-top: -50px;
margin-left: 15px;
}
header button{
border: none;
background-color: white;
font-size: 22px;
}
.new{
background-color: rgb(112, 156, 236);
border-radius: 5px;
color: white;
width: 140px;
}
.card-body{
width: 405px;
height: 250px;
margin: 10px;
border-radius: 10px;
background-color: rgb(220, 231, 228);
}
.card-image{
width: 150px;
height: 150px;
border-radius: 90px;
background-position: center;
background-size: cover;
background-image: url(img/shutter.jpg);
}
.card-content{
margin-left: 20px;
margin-top: 30px;
}
.users .card-content h3{
font-size: 25px;
}
.card-content .button button{
border: 2px solid grey;
color: blue;
border-radius: 20px;
margin: 5px;
}
/* Media Query */
@media screen and (max-width: 900px) {
.link{
width: 100% !important;
display: flex !important;
flex-wrap: wrap !important;
margin-top: 40px !important;
justify-content: start !important;
}
.users{
height: 220vh;
}
.card-body{
width: 95%;
height: 380px;
}
.card-image{
margin: auto;
}
}