-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
95 lines (91 loc) · 1.55 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
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
body{
background-color: #e1e1e1!important;
font-family: 'Ubuntu', sans-serif !important;
}
#register-page{
text-align:center;
background-color:black;
padding:20px;
position:relative;
top:60px;
color:white;
border-radius:20px;
}
#commentsSection{
display: none;
width:80vw;
text-align:left;
font-size:20px;
padding-left:20px
}
#comm{
border-bottom: 1px solid #969696;
padding:10px;
}
.active{
background-color: white;
color: black!important;
}
.nav-item{
margin-left:10px;
}
.disposts{
width:80vw
}
.card{
width: 60vw;
margin: 20px;
text-align: center;
padding: 20px;
}
.card a{
background-color: #1416b0;
width:100px;
padding: 10px;
text-decoration: none;
color:white;
}
.card h3{
max-height: 50px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.card:hover{
box-shadow:0px 1px 4px -1px #a80e9e;
}
.blogwriting{
max-width:80vw;
}
.blogwriting input{
margin-top: 20px;
border:1px solid blue;
}
.blogwriting textarea{
margin-top: 20px;
border:1px solid blue;
}
.blogwriting label{
margin-top: 20px;
}
.public_content{
text-align: center;
}
#Blog{
width: 80vw;
background-color: white;
padding:20px;
margin-top:10px
}
@media (max-width:741px) {
#flex_home{
flex-direction: column;
}
.posts .card{
width: 90vw!important;
}
.private-card .card{
width: 90vw!important;
}
}