-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
139 lines (119 loc) · 2.43 KB
/
style.css
File metadata and controls
139 lines (119 loc) · 2.43 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
body {
background-color: #0d1116;
font-family: "Alliance1", "Alliance1HeaderFallback", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-feature-settings: unset;
letter-spacing: -0.04px;
}
nav {
background-color: #E64A19;
}
nav ul {
padding:0;
margin:0;
list-style: none;
position: relative;
}
nav ul li {
margin: 0px -7px 0 0;
display:inline-block;
background-color: #E64A19;
}
nav a {
display:block;
padding:0 10px;
color:#FFF;
font-size:20px;
line-height: 60px;
text-decoration:none;
}
nav a:hover {
background-color: #000000;
}
p, h3{
margin: 0;
}
.form {
color: white;
}
.form input[type=submit] {
font-size: 24px;
background-color: #763EC6;
border: none;
border-radius: 5px;
color: white;
text-align: center;
width: 180px;
height: 60px;
}
.form input[type=submit]:hover {
cursor: pointer;
}
.cards {
color: white;
font-size: 24px;
}
.card {
background-color: #303030;
color: white;
padding: 5px;
margin-top: 15px;
margin-bottom: 15px;
width: 300px;
word-wrap: break-word;
border-radius: 5px;
}
.myBtn {
font-size: 24px;
background-color: #763EC6;
border: none;
border-radius: 5px;
color: white;
text-align: center;
width: 250px;
height: 60px;
margin-top: 15px;
}
.myBtn:hover {
cursor: pointer;
}
.modal {
display: none;
position: fixed;
z-index: 1;
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
position: relative;
background-color: #23272D;
margin: auto;
padding: 0;
width: 215px;
height: 200px;
border-radius: 5px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
-webkit-animation-name: animatetop;
-webkit-animation-duration: 0.4s;
animation-name: animatetop;
animation-duration: 0.4s
}
.modal-body {
padding: 15px 15px 100px 15px;
}
.close {
float: right;
margin-right: 15px;
font-size: 24px;
}
.close:hover {
cursor: pointer;
}
.cnt-img {
margin-top: 70px;
}