-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (70 loc) · 1.21 KB
/
style.css
File metadata and controls
83 lines (70 loc) · 1.21 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
* {
margin:0;
padding:0;
}
body {
font-family:'Roboto', cursive;
}
.container {
padding:25px;
width:800px;
margin:0px auto;
display:flex;
justify-content:space-between;
}
.nav {
width:80px;
background-color:rgb(150, 150, 150);
color:black;
display:inline-flex;
align-items:center;
justify-content:space-around;
width:100%;
}
.btn {
font-family:sans-serif;
width:150px;
margin: 15px;
border: 3px solid black;
padding: 10px 25px;
text-align:center;
box-shadow: 5px 5px black;
}
#login {
background-color: dodgerblue;
color:white;
}
.contentLeft {
display:flex;
flex-direction:column;
width:60%;
align-content:center;
}
.contentRight {
width:30%;
}
.wordInfo {
text-align: center;
}
.content {
width:100%;
height:225px;
border:3px solid black;
display:flex;
margin-bottom:25px;
align-items: center;
}
#like1 {
background-color:orange;
}
#like2 {
background-color: orange;
}
#addDefBtn {
background-color: olive;
}
#addDefBox {
flex-direction:column;
text-align:left;
height: 150px;
}