-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
100 lines (97 loc) · 1.58 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
* {
margin: 0;
padding: 0;
outline: 0;
max-height: 600px;
box-sizing:border-box;
font-family: 'Roboto';
}
body {
background-color: #fff;
min-height:100%;
-webkit-font-smoothing: antialiased !important;
}
strong {
font-size: 26px;
color: #222;
text-align: center;
}
span {
font-size: 14px;
font-weight: normal;
color: #555;
text-align: center;
}
.container {
padding: 20px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: flex-start;
}
.profile {
display: flex;
flex: 1;
flex-direction: column;
justify-content: center;
align-items: center;
}
.profile button {
background: none;
border: 0;
cursor: pointer;
}
.profile2 {
display: flex;
flex: 1;
flex-direction: column;
margin-left: 10px;
}
.noticies {
display: flex;
flex: 3;
height: 600px;
flex-direction: column;
justify-content: start;
align-items: flex-start;
padding: 10px;
}
.image {
height: 70px;
width: 70px;
border-radius: 30px;
margin-bottom: 20px;
/* border-radius: 500px; */
}
.card {
display: grid;
/* justify-content: left;7 */
justify-content: left;
align-items: flex-start;
height: 120px;
width: 900px;
padding: 10px;
padding-left: 20px;
box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
.card strong {
font-size: 18px;
color: #222;
text-align: left;
font-weight: 200;
}
.card span {
text-align: left;
font-size: 14px;
}
.noticies button {
background: none;
border: 0;
height: 120px;
width: 900px;
cursor:pointer;
}
.noticies button:hover {
background-color: #f4f4f4
}