-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (121 loc) · 2.03 KB
/
style.css
File metadata and controls
128 lines (121 loc) · 2.03 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
.wrapper{
width:1600px;
margin:auto;
}
html{
font-family: 'Roboto', sans-serif;
font-size: 16px;
}
body{
margin: 0;
}
.header{
background: #0d6efd;
}
.header:active{
background-size: contain;
}
.header__content {
display:flex;
justify-content: flex-start;
align-items: center;
padding:10px 0;
}
.header__link{
color: #ffffff;
}
.header__auth{
display:flex;
margin-left: auto;
gap:165px;
align-items:center;
}
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover {
text-decoration: none;
color: #12ffff;
transition: all 0.5s;
}
a:active { text-decoration: none; }
.task__content{
display:flex;
flex-direction: column;
align-items: center;
padding-top: 100px;
margin:auto;
max-width: 1200px;
}
.taskComplete{
background-color: limegreen;
}
.button{
background-color: #f24444;
color: white;
padding: 10px 20px;
text-shadow: 1px 0 1px #000,
0 1px 1px #000,
-1px 0 1px #000,
0 -1px 1px #000;
border: none;
border-radius: 4px;
}
.bd__red{
background: #ff0303;
}
.bd__green{
background: rgb(59, 170, 29);
}
.bd__yellow{
background: #d5d407;
}
.bd__blue{
background: #0d6dfc;
}
table{
width: 1200px;
border-spacing: 20px;
margin: auto;
border: 2px solid #0d6dfc;
border-radius: 10px;
}
.td__text{
word-wrap: break-word;
max-width: 100px;
border-bottom: 2px solid #0d6dfc;
}
.text-center{
text-align: center;
}
.auth__form{
margin: auto;
width: 500px;
border: 3px solid #0d6dfc;
border-radius: 10px;
padding: 10px;
}
input[type=submit]{
border: none;
}
input[type=submit]:hover{
color: #12ffff;
transition: all 0.5s;
}
.form__input {
padding: 12px;
margin: 8px 0;
border: 2px solid #0d6cfb;
border-radius: 4px;
width: 470px;
}
.form__flex
{
display:flex;
flex-direction: column;
}
.task__input{
border:none;
}
input[type="text"], input[type="password"], input[type="date"], textarea, select {
outline: none;
}