-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathm-style.css
More file actions
123 lines (117 loc) · 2.29 KB
/
m-style.css
File metadata and controls
123 lines (117 loc) · 2.29 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/* header */
header{
background-color: rgb(231, 142, 142);
margin: 8px 13px;
padding: 11px 120px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
header p{
text-align: center;
}
/* container */
.container{
display: flex;
justify-content: space-between;
margin: 8px 13px;
padding: 11px 52px;
}
.about{
background-color: rosybrown;
padding: 17px 54px;
margin: 0px 5px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center ;
}
#btn{
outline: none;
background-color: rgb(163, 115, 115);
border: none;
font-weight: bold;
border-radius: 7px;
padding: 5px 8px;
cursor: pointer;
transition: background-color 0.5s ease;
}
#btn:hover{
background-color:rgb(94, 65, 65) ;
}
/* side */
.side{
padding: 17px 12px;
margin: 0px 5px;
}
.side div{
background-color: grey;
padding: 2px 18px;
margin: 17px 5px;
}
/* Modal */
.modalbg{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
visibility: hidden;
opacity: 0;
}
.modalbox{
border-radius: 5px;
background-color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 30%;
}
.modalbox form{
background-color: white;
display: flex;
flex-direction: column;
margin: 24px;
}
.modalbox form input,
.modalbox form label{
padding: 2px 5px;
margin: 4px;
}
.modalbox form button{
margin: 4px;
outline: none;
background-color: rgb(48, 129, 221);
border: none;
border-radius: 7px;
padding: 5px 8px;
cursor: pointer;
transition: all 0.5s ease;
}
.modalbox form button:hover{
background-color: rgb(41, 96, 158);
}
.close{
position: relative;
top: 2px;
right: -211px;
font-size: 15px;
font-weight: bold;
padding: 2px 9px;
border-radius: 3px;
cursor: pointer;
}
.close:hover{
background-color: red;
}
/* utility */
.modalappear{
visibility: visible;
opacity: 1;
}