-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
122 lines (115 loc) · 2.43 KB
/
style.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
119
120
121
122
body {
/* Background Color */
background-color: #2a2525;
}
.nav-links{
/* Text Top Right Alignment */
text-align: right;
}
.nav-links a{
/* Text Color */
color: white;
/* Text Font */
font-family: 'Roboto', sans-serif;
/* Text Weight */
font-weight: bold;
/* Text Size */
font-size: 20px;
/* Text Top Margin */
margin-top: 0%;
/* Text Top Padding */
padding-top: 10px;
/* Text Bottom Padding */
padding-bottom: 10px;
/* Text Left Padding */
padding-left: 10px;
/* Text Right Padding */
padding-right: 10px;
/* Text Decoration */
text-decoration: none;
}
/* Text Hover Underline */
.nav-links a:hover{
text-decoration: underline;
}
.page-logo{
/* Text Center Alignment */
text-align: center;
/* Text Size */
font-size: 74px;
/* Text Color */
color: white;
/* Text Font */
font-family: 'Roboto', sans-serif;
/* Text Weight */
font-weight: bold;
/* Text Top Margin */
margin-top: 10%;
/* Text Bottom Margin */
margin-bottom: 20px;
}
table {
/* alignment */
margin-left: auto;
margin-right: auto;
/* border */
border-collapse: collapse;
/* font */
font-family: 'Roboto', sans-serif;
color: rgb(0, 0, 0);
font-size: 20px;
/* padding */
padding: 20px;
}
td {
padding: 10px;
}
.text-box {
width: 500px;
height: 30px;
font-size: 20px;
font-family: 'Roboto', sans-serif;
color: white;
/* Center Text Box */
margin-left: auto;
margin-right: auto;
display: block;
/* place text box in middle */
margin-top: 0%;
/* Round Corners */
border-radius: 20px;
/* Background Color */
background-color: #2a2525;
/* Internal Padding */
padding-left: 20px;
/* cursor color */
caret-color: white;
/* Border styling */
border-color: gray;
border-style: solid;
}
.submit-button {
width: 150px;
height: 45px;
/* Font */
font-size: 16px;
font-family: 'Roboto', sans-serif;
color: white;
/* Center Button */
margin-left: auto;
margin-right: auto;
display: block;
/* Round Corners */
border-radius: 10px;
/* Padding */
padding: 10px;
/* Background Color */
background-color: #413b3b;
/* Border styling */
border-style: none;
}
.submit-button:hover {
/* Border styling */
border-style: solid;
border-color: gray;
}