-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic_school_style.css
106 lines (94 loc) · 1.56 KB
/
basic_school_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
html {
background: url(img/new_user.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body {
font-family: 'Roboto', sans-serif;
}
a:link {
text-decoration: none;
font-weight: bold;
color: #FFFFFF;
}
a:visited {
text-decoration: none;
color: #FFFFFF;
}
a:hover {
text-decoration: none;
color: #FF9900;
}
a:active {
text-decoration: none;
color: #FF9900;
}
header {
position: fixed;
top: 0px;
left: 0px;
background-color: #5200A3;
z-index: 2;
height: 30px;
left:0px;
right:0px;
padding: 10px;
display: block;
box-shadow: 0px 5px 5px #000000;
}
#logo {
position: absolute;
left: 60px;
top: 8px;
height: 35px;
}
/* User confirmation specific styling */
#new_user {
position: relative;
left: 0px;
width: 100%;
height: 100%;
}
#new_user_paper {
background-color: #FFFFFF;
position: relative;
top:50%;
transform: translateY(-50%);
height: 415px;
width: 600px;
margin: 0 auto;
margin-bottom: 50px;
text-align: center;
padding: 20px;
font-size: 30px;
box-shadow: 0px 0px 25px #000000;
}
#new_user_logo {
height: 80px;
}
/* login page */
#new_user .tb {
height: 40px;
font-size: 20px;
padding: 5px;
margin-bottom: 10px;
background-color: #EFD9FF;
border: solid;
border-radius: 4px;
border-width: 1px;
border-color: #5200A3;
color: #000000;
}
#login_button {
width: 140px;
height: 40px;
font-size: 20px;
color: #FFFFFF;
background-color: #5200A3;
border-style: none;
border-color: #FF9900;
border-width: 1px;
border-radius: 4px;
}