-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path01.css
More file actions
176 lines (137 loc) · 2.43 KB
/
01.css
File metadata and controls
176 lines (137 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body{
font-size: 16px;
font-family: 'Roboto', sans-serif;
font-weight: normal;
color: #0f141e;
background: #f1f1f1;
}
.info {
margin-bottom: 20px;
display: flex;
}
.infotext {
margin-left: 50px;
}
.avatar{
width: 300px;
border-radius: 50px;
}
.infotext p {
font-style: italic;
font-weight: bold;
color: #86898f;
margin: 0;
}
@media (max-width: 750px) {
.info{
display: block;
text-align: center;
}
}
.card {
padding: 10px 20px;
margin-bottom: 20px;
border-radius: 5px;
background-color: #c1cbe0;
}
.card table {
text-align: center;
}
.container{
max-width: 750px;
margin: auto;
padding-top: 30px;
}
a {
color:#333;
}
a:hover {
color: aqua;
}
a:active {
color:blue
}
.btn {
background: #111;
padding: 15px 20px;
color: #f1f1f1;
border: none;
cursor: pointer;
border-radius: 5px;
}
.btn:hover {
opacity: 0.8;
}
.list {
padding: 0 20px;
}
.list li {
color: #86898f;
margin-bottom: 10px ;
}
.table {
width: 100%;
}
.table td {
padding: 10px;
}
.navbar {
background: #cc9696;
border-radius: 5px;
}
.navbar ul{
list-style: none;
display: flex;
padding: 10px 20px;
}
.navbar ul li {
margin: 5px;
padding: 10px;
}
.navbar ul li:last-child {
margin-right: 0;
}
.form h2 {
text-align: center ;
}
.form-row {
margin-bottom: 10px;
display: flex;
}
.form-row .form-group:last-child {
margin-right:0
}
@media (max-width: 750px) {
.form-row {
display: block;
}
.form-row .form-group {
width: 100%;
margin-right: 0;
margin-bottom: 10px;
}
}
.form-row .form-group{
/* display:inline-block ; */
margin-right: 20px;
width: 50%;
/* width: calc(50%-20px); */
}
.form-group label{
display: block;
font-size: 14;
color: #333;
}
.form-group input,
.form-group textarea {
width: 100%;
box-sizing: border-box;
border: none;
background: transparent;
border-bottom: 1px solid #ccc;
color:#000;
padding: 15px 0 10px;
outline: none;
font-family: inherit;
}