-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
118 lines (111 loc) · 1.84 KB
/
index.css
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
/* Fonts */
/* Styling */
* {
padding: 0px;
margin: 0px;
outline: none;
}
body {
background-color: #282E58;
}
#title {
color: #FDFEFE;
font-size: 3em;
padding: 0px 20px;
margin: 12px;
}
form {
text-align: center;
font-size: 1.1em;
}
form {
background-color: #FDFEFE;
padding: 20px 0;
border-radius: 10px;
padding: 10px;
margin: 10px;
}
input, textarea{
border: 2px solid #5585ff;
padding: 5px 10px;
color: #5585ff;
font-size: 15px;
transition: all 0.25s ease;
}
input:focus, textarea:focus{
background-color: #5585ff;
color: #FDFEFE;
}
button {
padding: 5px 15px;
margin: 15px 0px 0px 0px;
outline: none;
height: 40px;
text-align: center;
width: 130px;
border-radius: 40px;
background: #fff;
border: 2px solid #5585ff;
color: #5585ff;
letter-spacing: 1px;
text-shadow: 0;
font-size: 15px;
font-weight: bold;
cursor: pointer;
transition: all 0.25s ease;
}
button:hover {
color: white;
background: #5585ff;
letter-spacing: 1px;
}
button:active{
letter-spacing: 2px;
}
#teams {
color:#282E58;
background-color: #FDFEFE;
border: 4px solid #FDFEFE;
border-radius: 10px;
padding: 10px;
margin: 10px;
}
#team-title {
color: #282E58;
font-size: 3em;
margin: 5px 15px;
}
#teams > div {
margin: 0px 0px 30px 38px;
}
#teams > div > h3{
font-size: 2em;
}
#teams > div> p {
padding: 5px;
}
#teams > div> button {
margin: 15px 0px 0px 0px;
outline: none;
height: 35px;
text-align: center;
width: 120px;
border-radius: 40px;
background: #fff;
border: 2px solid #F5595A;
color: #F5595A;
letter-spacing: 1px;
text-shadow: 0;
font-size: 15.4px;
font-weight: bold;
cursor: pointer;
transition: all 0.25s ease;
}
#teams > div> button:hover {
color: white;
background: #F5595A;
letter-spacing: 1px;
}
#teams > div> button:active{
letter-spacing: 2px;
}